假设我在网络上有一个网页,这个页面有很多带有 id 的元素。如何使用 javascript 获取这些元素?我在 jQuery 中使用了这个块:
$.get(websiteUrl, {}, function(results){
//alert(results); // will show the HTML from anotherPage.html
console.log($(results).find("bookId").html()); // show "bookId" div in results
});
但我得到错误:
XMLHttpRequest cannot load; Origin http://127.0.0.1:8000 is not allowed by Access-Control-Allow-Origin.
实际上,我正在尝试从 Android 上的 Phonegap 应用程序的网页中获取一些数据。任何想法如何做到这一点?