在页面加载时使用AJAX或jQuery加载数据表单脚本

时间:2014-04-06 22:17:09

标签: jquery ajax

在wordpress小部件区域我有脚本:

<script type="text/javascript" src="http://www.site.com/out/data_out.js.php?data=0"></script>

我需要使用AJAX或jQuery(使用加载器动画)加载它因为site.com非常慢并且延迟了页面的加载。我怎么能这样做?

我正在寻找任何一个例子......

2 个答案:

答案 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
});