我正在尝试使用 jQuery 的 ajax 来调用 php 脚本 onload。此脚本将从 url Web 服务返回 xml,对其进行解析,然后在页面加载(onload)时将其部分显示到 div 标签中。在使用表单时,我对 php 没意见,但是让 php 脚本运行 onload 对我不起作用。有人可以看看我的代码并给我你的建议吗?提前致谢。
HTML:
<!doctype html>
<html>
<head>
<title>Word of the Day</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="code.js"></script>
</head>
<body>
<h3>Word of the Day: </h3>
<div id="word_day"></div>
</body>
</html>
JavaScript:
$(document).ready(function() {
$(window).load(function() {
$.ajax({
post: "GET",
url: "word_day.php"
}).done(function() {
alert(this.responseText);
}).fail(function() {
alert(this.responseText);
});
});
});
我没有添加我的 PHP 代码,因为我很确定这不是我沮丧的原因。