我创建了一些使用 Ajax 刷新/更新两个字段的测试代码。它工作得很好,现在,为了保持整洁,我创建了一个名为 Ajax.js 的文件
在我所有字段所在的 HTML 页面中,我想调用此文件并使其更新两个变量。
我做了以下事情:
在我的 HTML 页面中:
<--- included the meta lines needed for the Ajax file ---->
<--- included: my jQuery includes needed ---------->
<---- my link to the Ajax.js file -------------->
<script src="Ajax.js"></script>
<----- made the call this way, I am not sure is right ------->
<!----- Ajax Update Fields Function ----->
<script>
jQuery('nav').Ajax();
</script>
该调用不起作用,它不会更新字段。这是实际的 Ajax.js 代码:
// JavaScript Document
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
$(function()
{
setInterval(function()
{
$.get("ajax_v00.html",function(data,textStatus, jqXHR)
{
var temperature=$(data).filter('#variable1').text()
var time=$(data).filter('#variable2').text()
$('#variable1').text(temperature)
$('#variable2').text(time)
})
.fail(function(jqxhr,textStatus,errorThrown) //Callback failed
{
$('#errors').text("Errors:" + textStatus + " " + errorThrown)
})
.done(function() //Callback succeeded
{
$('#errors').text('Errors:');
})
},1000);
})
我该如何正确称呼它?希望我正确地解释了自己?