文章详细内容
ajax技巧制作得在线歌词搜索功效发布日期:2014年05月04日   来源:PHP1.CN     点击:47530
摘要: 最新制作完成的在线歌词搜索功效,利用ajax技巧,无刷新显示歌词,只需要输进你要查找的歌曲名或歌词。界面还不是很好看,完善中...... 1!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transition...
最新制作完成的在线歌词搜索功效,利用ajax技巧,无刷新显示歌词,只需要输进你要查找的歌曲名或歌词。界面还不是很好看,完善中......
1<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
2<html xmlns='http://www.w3.org/1999/xhtml'>
3<head>
4<meta http-equiv='Content-Type' content='text/html; charset=gb2312' />
5<title>无标题文档</title>
6</head>
7
8<body>
9<style type='text/css'>
10<!--
11body {
12background-color: #FFFFFF;
13 font-size: 85%;
14 font-family: Verdana;
15 margin-top : 10px;
16 margin-left : 10px;
17}
18a:link{color:#3737c8}
19a:active {color: #f00;}
20a:visited {color:#639;}
21-->
22</style>
23<script language='javascript'>
24 var http_request = false;
25 function send_request(url) {//初始化、指定处理函数、发送恳求的函数
26 http_request = false;
27 //开端初始化XMLHttpRequest对象
28 if(window.XMLHttpRequest) { //Mozilla 浏览器
29 http_request = new XMLHttpRequest();
30 if (http_request.overrideMimeType) {//设置MiME种别
31 http_request.overrideMimeType('text/xml');
32 }
33 }
34 else if (window.ActiveXObject) { // IE浏览器
35 try {
36 http_request = new ActiveXObject('Msxml2.XMLHTTP');
37 } catch (e) {
38 try {
39 http_request = new ActiveXObject('Microsoft.XMLHTTP');
40 } catch (e) {}
41 }
42 }
43 if (!http_request) { // 异常,创立对象实例失败
44 window.alert('不能创立XMLHttpRequest对象实例.');
45 return false;
46 }
47 http_request.onreadystatechange = processRequest;
48 // 断定发送恳求的方法和URL以及是否同步履行下段代码
49 http_request.open('GET', url, true);
50 http_request.send(null);
51 }
52 // 处理返回信息的函数
53 function processRequest() {
54 if (http_request.readyState == 4) { // 判定对象状态
55 if (http_request.status == 200) { // 信息已经成功返回,开端处理信息
56 //alert(http_request.responseText);
57 document.getElementById('result').innerHTML = http_request.responseText;
58 } else { //页面不正常
59 alert('您所恳求的页面有异常。');
60 }
61 }
62 }
63 function dosearch() {
64 var f = document.form1;
65 var geci = f.geci.value;
66 if(geci=='') {
67 window.alert('请输进你要查询的歌词');
68 f.geci.focus();
69 return false;
70 }
71 else {
72 document.getElementById('result').innerHTML='正在查询,请稍候';
73 send_request('http://www.efish.cn/getgeci.aspx?m=' escape(geci));
74 }
75 }
76 function submitForm() {
77 if(window.event.keyCode==13) {
78 dosearch();
79 }
80 }
81</script>
82<p></p><p></p>
83<form method='post' action=''>
84<center><span>十万歌词在线免费查询</span></center>
85<p></p>
86 请输进歌曲名:
87 <input type='text' value='东风破' size='60' maxlength='50' onKeyDown='submitForm()' />
88 <input type='button' value='查询歌词'><br />
89 <span></span>
90</form>
91</body>
92</html>
转载请注明来源:ajax技巧制作得在线歌词搜索功效
标签:PHP ,CSS数据库 ,优化