0
我有,我想讀遠程網頁是在http://xtremeinspection.com/new2you4kids/app/android/get_product_size.php?productID=113跨域閱讀使用jQuery/AJAX/Json的
該網頁的HTML頁面遠程URL返回根據查詢字符串參數的值傳遞是產品ID
我的問題是,因爲它的跨域讀數據是使用jquery/Ajaz/Json或所有這些的最佳方法?
我已經在谷歌搜索它,但我找不到讀取和顯示在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>
JSONP是這樣的去。 – defau1t
@ defau1t任何示例? – user580950
添加了答案。 – defau1t