0

我正在使用 jquery.load()对我的索引文件执行 ajax 调用。这也是我已经使用的同一个文件。唯一的区别是我在 ajax 调用中添加了一些参数。我之前已经成功完成了此操作,但是这次我不断将找不到的文件加载到我试图放置检索到的内容的 div 中。

这是我的js代码

$('.submit').click(function () {
    var root = document.URL;
    var name = document.getElementById('name').value;
    var email = document.getElementById('email').value;
    var message = document.getElementById('message').value;
    var url = '?name=' + name + '&email=' + email + '&msg=' + message + '&submit=true';
    alert(url + ' #contact_response');
    $('#contact_response_wrapper').load(url + ' #contact_response', function (response) {
        $('#contact_response').html(response);
    });
});

我一直在尝试但没有成功的根变量。我以前也从来没有投入$('#contact_response').html(response);过。没有这个,我什至无法得到回应。关于什么可能是我的问题的任何想法?

4

0 回答 0