var urlx;
function sample(){
var str1,str2;
str1=utf.URLencode("城山三郎");
str2=utf.URLencode("官僚たちの夏");
urlx="https://app.rakuten.co.jp/services/api/BooksBook/Search/20130522?";
urlx=urlx+"applicationId=";
urlx=urlx+"cc7aedb3ecd1a722df68c90e98298864";
urlx=urlx+"&author=";
urlx=urlx+str1;
urlx=urlx+"&title=";
urlx=urlx+str2;
urlx=urlx+"&callback=";
urlx=urlx+"callback";
f();
}
function f(){
$.ajax({
type: 'GET',
url: urlx,
dataType: 'jsonp',
jsonp: 'jsoncallback',
jsonpCallback: 'callback',
success: function(json){
$("#b").append(json.page);
},
error: function(){
alert("error");
}
});
}
最終更新:2013年12月15日 02:15