在wordpress小部件区域我有脚本:
<script type="text/javascript" src="http://www.site.com/out/data_out.js.php?data=0"></script>
我需要使用AJAX或jQuery(使用加载器动画)加载它因为site.com非常慢并且延迟了页面的加载。我怎么能这样做?
我正在寻找任何一个例子......
答案 0 :(得分:0)
看看https://api.jquery.com/jQuery.ajax/ 这应该是你需要的全部
答案 1 :(得分:0)
GET:
$.ajax({
url: 'http://www.site.com/out/data_out.js.php?data=0',
type: 'GET'
})
.done(function(results){
// do something with results
});
POST:
$.ajax({
url: 'http://www.site.com/out/data_out.js.php',
type: 'POST',
data: { data : 0 }
})
.done(function(results){
// do something with results
});