JQuery是著名的JavaScript庫,可以方便地實現(xiàn)各種功能。其中,請求傳多個參數(shù)是常見的操作之一。本文將介紹如何使用JQuery請求傳多個參數(shù)。
$.ajax({ type: "GET", url: "example.php", data: { name: "John", age: 30, city: "New York" }, success: function(result){ console.log(result); } });
上述代碼使用了JQuery的ajax方法,其中,type表示請求類型,url表示請求地址,data表示傳遞的參數(shù)。其中,參數(shù)以鍵值對的方式傳遞。在這個例子中,我們傳遞了三個參數(shù):name、age和city。
如果需要傳遞更多的參數(shù),可以直接在data中繼續(xù)添加鍵值對即可。例如:
$.ajax({ type: "POST", url: "example.php", data: { name: "John", age: 30, city: "New York", company: "ABC", job: "Engineer" }, success: function(result){ console.log(result); } });
上述代碼中,我們多傳遞了兩個參數(shù):company和job。
總結(jié)來說,JQuery請求傳多個參數(shù)非常簡單,只需要在ajax方法的data中以鍵值對的形式傳遞即可。