在使用JQUERY提交之前检查表单输入值的问题

时间:2013-08-17 03:18:11

标签: javascript jquery html

我的代码如下

$(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;
    });

});

似乎提交功能不起作用,因为警报信息没有出现。 如果我把提交函数放在click函数中,它也不起作用。 怎么了?我是jQuery的新手,非常感谢!

2 个答案:

答案 0 :(得分:4)

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

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

答案 1 :(得分:0)

$('#dimensionAndObjects').live('click',function(e) {
e.preventdefault();
        alert("haahhhahhaha");
        return false;// for not submit the form
return true ;// for submit the form
    });