📌  相关文章
📜  从表单 jquery 获取响应 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:15.242000             🧑  作者: Mango

代码示例2
$('#myForm')
    .ajaxForm({
        url : 'myscript.php', // or whatever
        dataType : 'json',
        success : function (response) {
            alert("The server says: " + response);
        }
    })
;