-11 ol-11">
})
/* $.get("data?name=zhangsan001",function(data){
alert(data);
}); */
/* for(var i in XMLHttpRequest){
console.log(i + "---" + XMLHttpRequest[i]);
} */
//创建XMLHttpRequest对象
xhr = new XMLHttpRequest();
//注册回调函数
xhr.onreadystatechange=callback;
//第一个参数设置成post,第二个写url地址,第三个为是否采用异步方式
xhr.open("POST","../data",true);
//post请求需要自己设置请求头
xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
//post请求
xhr.send("name=lisi");
}
function callback(){
//接收响应数据
//判断对象状态是否交互完成,如果为4则交互完成
if(xhr.readyState == 4){
//判断对象状态是否交互成功,如果成功则为200
if(xhr.status == 200){
//接收数据,得到服务器输出的纯属文本数据
var response = xhr.responseText;
alert("返回的数据为:" + response);
}
}
}
</script>
<br /><br />
<button style="width:200px;height:100px;" id="hrefBaidu">跳转到百度(href)</button>
<script type="text/javascript">
var btn = document.getElementById("hrefBaidu");
btn.onclick = function(){
window.location.href="http://3g.baidu.com";
}
</script>
</body>
|
||
1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
|
38 |
|
|
39 |
|
|
40 |
|
|
41 |
|
|
42 |
|
|
43 |
|
|
44 |
|
|
45 |
|
|
46 |
|
|
47 |
|
|
48 |
|
|
49 |
|
|
50 |
|
|
51 |
|
|
||
173 | 173 |
|
174 | 174 |
|
175 | 175 |
|
176 |
|
|
177 |
|
|
176 | 178 |
|
177 | 179 |
|
178 | 180 |
|
|
||
10 | 10 |
|
11 | 11 |
|
12 | 12 |
|
13 |
|
|
13 | 14 |
|
14 | 15 |
|
15 | 16 |
|
|
||
303 | 304 |
|
304 | 305 |
|
305 | 306 |
|
307 |
|
|
308 |
|
|
309 |
|
|
310 |
|
|
311 |
|
|
312 |
|
|
313 |
|
|
314 |
|
|
315 |
|
|
316 |
|
|
317 |
|
|
318 |
|
|
319 |
|
|
320 |
|
|
321 |
|
|
306 | 322 |
|
307 | 323 |
|
308 | 324 |
|