如何加载一些html并附加到jQuery

时间:2015-01-25 07:42:41

标签: javascript jquery html wordpress

这与此处的问题有关:How to load some html and append to <body> with jQuery?

我被要求打开新问题

我的问题是:

我有一个小的日期选择器,显示当前日期和第二天。我使用了那里发布的代码,但遇到问题,问题是数据没有更新,但是当我刷新页面时它会更新。我使用wordpress和插件允许运行jQuery

发布的代码是

$.ajax({
    url: "your.html",
    success: function (data) { $('body').append(data); },
    dataType: 'html'
});

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

这可能会有所帮助 这将在页面加载后每隔200ms自动更新代码

$(document).ready( function() {
 done();
});

function done() {
  setTimeout( function() { 
  updates(); 
  done();
  }, 200);//set timer 

}

function updates() {
     // add your code here to update

}