使用ajax和jquery mobile获取沙盒

时间:2012-11-06 18:52:18

标签: ajax jquery-mobile

我需要将一些代码从桌面网站提取到移动网站,但我遇到了一些错误 这是我得到的错误

XMLHttpRequest无法加载http://brunswickchurch.org/youth。 Access-Control-Allow-Origin不允许原点http://w5webdesigns.com

这是代码

$.ajax({
          url: "http://brunswickchurch.org/youth",
          crossDomain: true,
          success: function(data){
                //console.log(data);
                var content = $("#content-area", data )[0]; /// returns the 0th element of an array with 1 element
                //console.log(content);
              $(content).find('img').remove();
              $(content).find('hr').remove();
              $("#doane").html(content); // get that 1 element (the entire content-area div) and replace the doane div's content on this page
         }
      });

这是HTML中的调用

<div data-role="content" data-theme="c">
        <div id="doane">kjgflguif
        <p>listen to the current sermon</p>
        </div>       
    </div>

我有一个使用safari的mac工作,但我似乎无法让它在我的Windows或android上工作,有没有更好的方法。一种更加跨浏览器兼容的方式来解决这个问题?

0 个答案:

没有答案