关于JavaScript跨域问题 及 实时刷新

来源:互联网 发布:linux移动目录命令 编辑:程序博客网 时间:2024/06/06 07:20

        在自己页面显示其他网站上面的数据, 需要用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);

0 0
原创粉丝点击