📄 relshow.js
字号:
var $=function(node){
return document.getElementById(node);
}
//显示相关搜索 和更新关键字数据
function relShowUpdate(){
var xmlhttp;
try{
xmlhttp = new XMLHttpRequest();
}
catch(e){
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4){
if(xmlhttp.status == 200){
var data = xmlhttp.responseText;
$("relate").innerHTML= "相关搜索:" + data;
}
}
}
xmlhttp.open("POST","relShow.do",true);
xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
xmlhttp.send("");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -