关于JavaScript跨域问题及实时刷新解决方案
更新时间:2014年06月09日 09:01:32 作者:
在页面显示其他网站上面的数据,需要用Ajax,就涉及到跨域问题,下面有个示例,大家可以看看
在自己页面显示其他网站上面的数据,需要用Ajax,就涉及到跨域问题,
解决方案:jQuery.support.cors = true; (浏览器支持跨域访问),
实例:
//浏览器支持跨域访问
jQuery.support.cors = true;
$.ajax({
url: "http://www.rj99999.com/Price/ListPrice.html",
dataType: 'html',
success: function (data, textStatus) {
//nowPrice为本页面显示数据控件,#price', data为从其他网站取出名为price的元素。
$("#nowPrice").text(jQuery('#price', data).html() + "元/克");
},
error: function (xhr, ajaxOptions, thrownError) {
$("#nowPrice").text("暂时无法显示");
}
});
//实时刷新
//每60000毫秒/1分钟调用togglecountdowntime()方法。
setTimeout("togglecountdowntime()", 60000);
解决方案:jQuery.support.cors = true; (浏览器支持跨域访问),
实例:
复制代码 代码如下:
//浏览器支持跨域访问
jQuery.support.cors = true;
$.ajax({
url: "http://www.rj99999.com/Price/ListPrice.html",
dataType: 'html',
success: function (data, textStatus) {
//nowPrice为本页面显示数据控件,#price', data为从其他网站取出名为price的元素。
$("#nowPrice").text(jQuery('#price', data).html() + "元/克");
},
error: function (xhr, ajaxOptions, thrownError) {
$("#nowPrice").text("暂时无法显示");
}
});
//实时刷新
//每60000毫秒/1分钟调用togglecountdowntime()方法。
setTimeout("togglecountdowntime()", 60000);
相关文章
纯javascript的ajax实现php异步提交表单的简单实例
下面小编就为大家带来一篇纯javascript的ajax实现php异步提交表单的简单实例。小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2016-05-05
ajax类AJAXRequest v0.8.01 2008-01-31 最新版附使用帮助
2008-02-02


最新评论