function test1(){
var text1 = $('#text1').val();
var data = {
"appid":アプリケーションID※,
"sentence":text1,
"output":"json",
"max-result":10,
};
var url = "http://jlp.yahooapis.jp/KeyphraseService/V1/extract";
//☆AJAX非同期通信
$.ajax({
url: url,
data: data,
cache: false,
dataType: "jsonp",
success: function(str_json, type) {
console.log(str_json);
},
error: function(xmlHttpRequest, textStatus, errorThrown){
$('#res').html(xmlHttpRequest.responseText);
}
});
}
参考リンク
公式ドキュメント