如何在jquery中进行调用

时间:2014-04-05 18:11:19

标签: javascript jquery

我写了这个jquery代码:

$(document).ready(function () {
    $("#testDiv").load("http://localhost:7908/ToLoadAjax.aspx");
});

似乎是Get http请求。

enter image description here

如何让它成为一个邮局?

3 个答案:

答案 0 :(得分:1)

$(document).ready(function () {
    $.post('http://localhost:7908/ToLoadAjax.aspx', function(data) {
        $("#testDiv").html(data);
    });
});

答案 1 :(得分:0)

因为你问:

$.ajax({
type: "POST",
url: url,
data: data,
success: success,
dataType: dataType
});

顺便说一句,阅读文档! https://api.jquery.com/jQuery.post/

但除非你真的发送了任何数据,否则做GET或POST都没有任何区别。

答案 2 :(得分:0)

使用$.post()请参阅the documentation了解更多信息。