所以我真的很难理解$ .getJSON()的参数,我目前在我的OJT中,并且有一个我无法弄清楚的AJAX请求参数。
$.getJSON(jspGetElems, {elem: $(this).val()}).done(function(result){
//console.log('result',result);
});
“{elem:$(this).val()}”究竟是什么意思?
答案 0 :(得分:0)
jQuery.getJSON()有3个参数url,数据和成功。在这里,在您的问题 elem:$(this).val()是数据。您可以将多个数据传递到服务器,如
{
"one": "Singular sensation",
"two": "Beady little eyes",
"three": "Little birds pitch by my doorstep"
}
试试例。
$.getJSON( "https://jsonplaceholder.typicode.com/posts",{ userId: 1 } )
.done(function(result){ console.log('result',result); });