html代码:<html>
<head>
<script src="jquery-1.3.2.js"></script>
<script>
$(function(){
$("#helloBtn").click(function(){
$.ajax({
url: "test.php",
type: "POST",
success: function(res){
alert(res);
},
error: function(msg){
alert('error');
}
});
});
});
</script>
</head>
<body>
<button id="helloBtn">hello</button>
</body>
</html>php代码: <?php
echo 'hello';
?>结果:我用的是apache服务器。
1 回答
- 1 回答
- 0 关注
- 841 浏览
添加回答
举报
0/150
提交
取消