Jquary 和Ajax实现简单的异步请求

时间:2022-08-27 14:45:32

代码:

<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ajax测试</title>
<link rel="stylesheet" href="../demo1/bootstrap/css/bootstrap.css">
<script src="jq/jQueryDownload/jquery.min.js"></script>
</head>
<body>
<button id="sb" type="button" class="btn btn-info">信息按钮</button>

<script>
$(document).ready(
function(){
$(
"#sb").click(function(){
$.post(
"http://localhost/demo2/test1.php",{
name:
"印第安老斑鸠",
url:
"http://www.laobanjiu.com"
},
function(data,status){
alert(
"数据: \n" + data + "\n状态: " + status);
});
});
});
</script>
</body>
</html>