⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hisshow.js

📁 本系统实现了从五个网站上搜索的图书进行整合后
💻 JS
字号:
//显示搜索历史内容
function ShowHistory(){

	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;
				$("history").innerHTML = "历史搜索:" + data;
			}
		}
	}
	xmlhttp.open("POST","hisShow.do",true);
	xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	xmlhttp.send("");
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -