jQuery
応答フォーム サービスの URL を取得していますが、ページにデータを配置する方法を探しています。誰かがjQueryコードループで私を助けてくれますか?
ありがとう、
<script type="text/javascript">
$.jsonp({
url: "http://test.com",
callback: "_jqjsp",
success: function(json) {
// Will be given the response of service
alert("success");
console.log("success");
},
error: function() {
// Will be notified of an error requesting service
alert("error");
console.log("error");
}
});
</script>
そして、これが私のJSONPデータです
_jqjsp({
"response":{
"numFound":2,
"docs":[
{
"id":"1",
"Name":"22689",
"Company":"ABC"
},
{
"id":"2",
"Name":"00012",
"Company":"ABC
},
]
}
});