如何使用JQuery调用我通常称之为http://localhost:8080?a=1&b=2&c=3的servlet。我特别想知道如何传递URL参数。
答案 0 :(得分:4)
$.ajax({
url: 'http://localhost:8080',
data: {a: 1, b: 2, c: 3},
success: function(response) {
}
});
答案 1 :(得分:1)
今天早些时候,我写了a detailed explanation使用jquery $.post()
与php进行交互。对于servlet,jquery方面将完全相同;只有地址会有所不同。
如果您更愿意使用get请求,或者返回不是JSON或字符串格式的数据,您可以从the jQuery API获取有关可能的不同方法的信息。