0

我正在使用 jQuery ajax。但是每次我从页面 ~/profile 向页面 ~/send_request 发出请求时,请求都会在 ~/profile/send_request 中捕获。这是代码

function sendRequest() {
            var id = document.getElementById("button-request").value;
            $.ajax({
                url: "send_request.cshtml",
                data: "id=" + id,
                success: function (result) {
                    $("#button-request").html(result);
                }
            })
        }

我无法访问所需的页面。我已经检查了 IE 开发人员工具。从那里我知道了这个问题!

4

2 回答 2

2

你需要打电话/send_request.cshtml

于 2013-08-15T10:39:40.473 回答
2

如果您的 .cshtml 文件位于根目录中,请使用../send_request.cshtml

于 2013-08-15T10:42:12.827 回答