我发布的脚本工作正常,它只是在后台执行我的PHP代码在页面的加载..我不能做的是在按下提交按钮后在后台启动PHP ..我试图添加一个形式在身体但我不知道如何将其与ajax联系起来..怎么可能做到? 谢谢!
<html>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.js"></script>
<script src="http://malsup.github.com/jquery.form.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
url: 'trial.php',
beforeSend: function() {
// you could also put a spinner img or whatever here too..
$("#myStatusDiv").html("started..");
},
success: function(result) {
$("#myStatusDiv").html(result);
}
});
});
</script>
</head>
<body>
</body>
</body>
</html>
答案 0 :(得分:3)
当文档准备好加载时,您当前正在执行代码。您应该将此代码添加到按钮单击事件中。
所以不是这个:
$(document).ready(function() {
//your code
});
执行此操作:
$(document).ready(function() {
$('#buttonid').click(function() {
//your code
});
});