表单元素添加了jquery没有执行正确的操作

时间:2013-10-24 19:14:48

标签: jquery html forms action

我有一个表单(#waldform),我希望只在提交上一个表单(#modelform)后出现。 #modelform和#waldform都调用python函数。如果我将#waldform直接包含在html文件中,一切正常并调用python函数。但是,如果我只在提交了#modelform之后才显示它,使用jquery,就像在下面的代码中一样,python函数不会被调用,并且网站URL最后会变为#。

这是jquery。表单元素添加在第一个函数中。

$(document).ready(function() {


    //call estimate python function
    $(function() {

        $("#modelform").submit(function() {

            // post the form values via AJAX...
            $.post('/estimate', {name: $("#mymodel").val()}, function(data) {

                var $a_var = data['title']
                var $element = $('<div class="item">' + $a_var + '</div><br>');

                $('body').append($element) ;

                //FORM ADDED HERE
                $('body').append('<form id="waldform" action="#" method="post"><input type="text" id="waldnum" /><input type="submit" value="Wald Test" /></form>');


            });

        return false ;
        });
    });



    //call wald python function
    $(function() {

        $("#waldform").submit(function() {

            //post the form values via AJAX...
            $.post('/wald', {name: $("#waldnum").val()}, function(data) {

                var $a_var = data['title']
                var $element = $('<div class="item">' + $a_var + '</div><br>');

                $('body').append($element) ;

            });

        return false ;
        });
    });



});

如果需要,这是html。如果我将#waldform直接包含在这个html代码中,那么正确调用python函数。

<!DOCTYPE html>
    <html>
        <head> 

                <script type="text/javascript" src="static/jquery-1.4.2.js"></script>
                <script type="text/javascript" src="static/jquery-ui-1.8.4.custom.min.js"></script>
                <script type='text/javascript' src='static/js_test.js'></script>
                <script type='text/javascript' src='static/jquery.form.js'></script> 

                <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
                <script src="http://malsup.github.com/jquery.form.js"></script>
        </head>
        <body>

            <form id="dataform" action="submit" method="post" enctype="multipart/form-data">
                <input type="file" name="myfile" id="myFile"/>
                <input type="submit" value="Submit File"/>
            </form>

            <form id="modelform" action="#" method="post">
                <input type="text" id="mymodel" />
                <input type="submit" value="Estimate" />
            </form>

        </body>
    </html>

2 个答案:

答案 0 :(得分:1)

您在第二个表单存在之前绑定到第二个表单的提交事件。添加后将其移至。

//FORM ADDED HERE
$('body').append('<form id="waldform" action="#" method="post"><input type="text" id="waldnum" /><input type="submit" value="Wald Test" /></form>');

//BIND EVENT HERE
$("#waldform").submit(function() {

答案 1 :(得分:0)

您需要使用.on()

委派它
$(document).on('submit', '#waldform', function(e) {
    alert('clicked');
    e.preventDefault();
});