我有一个 HTML 页面,我想从中读取远程网页,该网页位于http://xtremeinspection.com/new2you4kids/app/android/get_product_size.php?productID=113
网页根据传递的查询字符串参数返回一个值,即 productID
我的问题是因为它的跨域读取数据是使用 Jquery/Ajaz/Json 或所有这些混合的最佳方法?
我在 Google 上搜索过,但找不到在 DIV 中读取和显示数据的示例。
我正在使用此代码,但它不显示任何内容
<script type="text/javascript"src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script>
$(document).ready(function(){
$.getJSON('http://xtremeinspection.com/new2you4kids/app/android/get_product_size.php?productID=113', function(data){
$.each(data, function(i, tweet){
$('#tweets').append('<li>' + tweet.text + '</li>');
alert(tweet.text);
});
});
});
</script>
<ul id="tweets"></ul>