1

有人可以解释一下这段代码的作用。我发现这个函数最烦人的是它的单字母名称。我怎么知道这个函数的目的是什么以及调用这个函数的原因是什么。

    function i() {
        $(".main_section").delegate(".saveExam", "click", function () {
            ename = $("#addmore").val();
            $.ajax({
                url: "saveNewExam.php",
                type: "POST",
                data: {
                    examId: ename
                },
                dataType: "html",
                success: function (e) {}
            });
            window.location.reload()
        })
    }
4

2 回答 2

0

It makes a POST request to saveNewExam.php with the examId that is picked up from the element with an id of addmore. Immediately after making the POST request, before waiting for a response, it refreshes the page.

于 2013-09-14T06:25:08.117 回答
0

这是一个函数定义,所以它在这里向您解释函数的作用。它打算稍后在代码的其他地方使用。".saveExam"单击元素时,此特定函数会触发 ajax 请求。

于 2013-09-14T05:24:42.123 回答