ajax技术制作得在线歌词搜索功能
程序员文章站
2022-03-04 16:55:45
复制代码 代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<style type="text/css">
<!--
body {
background-color: #ffffff;
font-size: 85%;
font-family: verdana;
margin-top : 10px;
margin-left : 10px;
}
a:link{color:#3737c8}
a:active {color: #f00;}
a:visited {color:#639;}
-->
</style>
<script language="javascript">
var http_request = false;
function send_request(url) {//初始化、指定处理函数、发送请求的函数
http_request = false;
//开始初始化xmlhttprequest对象
if(window.xmlhttprequest) { //mozilla 浏览器
http_request = new xmlhttprequest();
if (http_request.overridemimetype) {//设置mime类别
http_request.overridemimetype('text/xml');
}
}
else if (window.activexobject) { // ie浏览器
try {
http_request = new activexobject("msxml2.xmlhttp");
} catch (e) {
try {
http_request = new activexobject("microsoft.xmlhttp");
} catch (e) {}
}
}
if (!http_request) { // 异常,创建对象实例失败
window.alert("不能创建xmlhttprequest对象实例.");
return false;
}
http_request.onreadystatechange = processrequest;
// 确定发送请求的方式和url以及是否同步执行下段代码
http_request.open("get", url, true);
http_request.send(null);
}
// 处理返回信息的函数
function processrequest() {
if (http_request.readystate == 4) { // 判断对象状态
if (http_request.status == 200) { // 信息已经成功返回,开始处理信息
//alert(http_request.responsetext);
document.getelementbyid("result").innerhtml = http_request.responsetext;
} else { //页面不正常
alert("您所请求的页面有异常。");
}
}
}
function dosearch() {
var f = document.form1;
var geci = f.geci.value;
if(geci=="") {
window.alert("请输入你要查询的歌词");
f.geci.focus();
return false;
}
else {
document.getelementbyid("result").innerhtml="正在查询,请稍候";
send_request('http://www.efish.cn/getgeci.aspx?m='+escape(geci));
}
}
function submitform() {
if(window.event.keycode==13) {
dosearch();
}
}
</script>
<p></p><p></p>
<form id="form1" name="form1" method="post" action="">
<center><span style="font-size:18px; color:#ff0000">十万歌词在线免费查询</span></center>
<p></p>
请输入歌曲名:
<input name="geci" type="text" id="geci" value="东风破" size="60" height="30" maxlength="50" onkeydown="submitform()" />
<input type="button" name="search" value="查询歌词" onclick="dosearch()"><br />
<span id="result"></span>
</form>
</body>
</html>
复制代码 代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<style type="text/css">
<!--
body {
background-color: #ffffff;
font-size: 85%;
font-family: verdana;
margin-top : 10px;
margin-left : 10px;
}
a:link{color:#3737c8}
a:active {color: #f00;}
a:visited {color:#639;}
-->
</style>
<script language="javascript">
var http_request = false;
function send_request(url) {//初始化、指定处理函数、发送请求的函数
http_request = false;
//开始初始化xmlhttprequest对象
if(window.xmlhttprequest) { //mozilla 浏览器
http_request = new xmlhttprequest();
if (http_request.overridemimetype) {//设置mime类别
http_request.overridemimetype('text/xml');
}
}
else if (window.activexobject) { // ie浏览器
try {
http_request = new activexobject("msxml2.xmlhttp");
} catch (e) {
try {
http_request = new activexobject("microsoft.xmlhttp");
} catch (e) {}
}
}
if (!http_request) { // 异常,创建对象实例失败
window.alert("不能创建xmlhttprequest对象实例.");
return false;
}
http_request.onreadystatechange = processrequest;
// 确定发送请求的方式和url以及是否同步执行下段代码
http_request.open("get", url, true);
http_request.send(null);
}
// 处理返回信息的函数
function processrequest() {
if (http_request.readystate == 4) { // 判断对象状态
if (http_request.status == 200) { // 信息已经成功返回,开始处理信息
//alert(http_request.responsetext);
document.getelementbyid("result").innerhtml = http_request.responsetext;
} else { //页面不正常
alert("您所请求的页面有异常。");
}
}
}
function dosearch() {
var f = document.form1;
var geci = f.geci.value;
if(geci=="") {
window.alert("请输入你要查询的歌词");
f.geci.focus();
return false;
}
else {
document.getelementbyid("result").innerhtml="正在查询,请稍候";
send_request('http://www.efish.cn/getgeci.aspx?m='+escape(geci));
}
}
function submitform() {
if(window.event.keycode==13) {
dosearch();
}
}
</script>
<p></p><p></p>
<form id="form1" name="form1" method="post" action="">
<center><span style="font-size:18px; color:#ff0000">十万歌词在线免费查询</span></center>
<p></p>
请输入歌曲名:
<input name="geci" type="text" id="geci" value="东风破" size="60" height="30" maxlength="50" onkeydown="submitform()" />
<input type="button" name="search" value="查询歌词" onclick="dosearch()"><br />
<span id="result"></span>
</form>
</body>
</html>
上一篇: 无框架 Ajax分页(原创)