2

我的代码如下

$(document).ready(function() {

    // this is a button to add the form to the DOM tree.
    $("#submitPara").click(function() {
        $("body").append('<form id = "dimensionAndObjects" action = "#"></form>');
        some code to add some input fields, omitted...
        $('#dimensionAndObjects').append('<p><input id = "submitDO" type = "submit" value = "submit"></input></p>');
        return true;
    });

    $('#dimensionAndObjects').submit(function() {
        alert("haahhhahhaha");
        return false;
    });

});

似乎提交功能不起作用,因为没有出现警报信息。如果我将提交功能放在点击功能中,它也不起作用。怎么了?我是 jQuery 的新手,在此先感谢!

4

2 回答 2

4

由于表单是动态创建的,因此您需要使用事件委托

$(document).on('submit', '#dimensionAndObjects', function() {
        alert("haahhhahhaha");
        return false;
    });
于 2013-08-17T03:22:17.723 回答
0
$('#dimensionAndObjects').live('click',function(e) {
e.preventdefault();
        alert("haahhhahhaha");
        return false;// for not submit the form
return true ;// for submit the form
    });
于 2013-08-17T06:35:44.877 回答