欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

关于JavaScript跨域问题及实时刷新解决方案

程序员文章站 2023-11-14 20:34:16
在自己页面显示其他网站上面的数据,需要用ajax,就涉及到跨域问题, 解决方案:jquery.support.cors = true; (浏览器支持跨域访问), 实例: 复...
在自己页面显示其他网站上面的数据,需要用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);