0
我開發了使用JQuery獲取JSON數據的工具,但問題是某些變量不會放置它們的值,並且我只能使用變量名。此代碼爲什麼我不能在JQuery中獲取變量值
$(document).ready(function(){
$('.HTML').each(function(){
var call = $.getJSON('http://test-khamsat-support-gig.blogspot.com/feeds/posts/default/-/Break?max-results=10&orderby=published&alt=json-in-script&callback=?',function(data){
var cont = data.version;
});
var th = $(this);
var b = th.html(),
a = b.match(/[^[\]]+(?=])/g);
if(a){
if(a[2] == 'one'){
th.append("<h1>'+cont+'</h1>")
}
}
});
});
,因爲它裏面的內容我blog飼料代碼將只是在我的博客上運行
是一個跨域請求? –
首先,在ajax請求中,你不能這樣做 - http://stackoverflow.com/questions/14220321/how-to-return-the-response-from-an-ajax-call –
第二,因爲'cont'是一個變量'th.append(「
」+ cont +「
」)' –