网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 关于javascript跨域问题及实时刷新解决方案
内容
    在自己页面显示其他网站上面的数据,需要用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);
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/21 9:42:30