我需要将一些代码从桌面站点拉到移动站点,但我遇到了一些错误这是我得到的错误
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 上工作,有没有更好的方法。一种更跨浏览器兼容的方式来实现这一点?