-3

编辑!

我可以将此javascript更改为点击功能吗?单击 div id "foo" 时?

HTML

<form id="mall" action="" method="post">
<input name="title" type="text" />
<input name="email" type="text" />

<div id="foo">Click on me to submit</div>
</form>

Javascript

这适用于普通的提交按钮。我可以将此作为 .click 函数添加到 div 吗?

<script type="text/javascript">
    $(document).ready(function(){
        $("#mall").validate({
            submitHandler: function(form) {
                $.post('process.php', $("#mall").serialize(), function(data) {
                    $('#results').html(data);
                });

            }
        });
    });
    </script>
4

1 回答 1

2

更新为编辑:

我认为您的代码有点尴尬,您应该使用 a<button>Click me to submit</button>或 a<input type="submit" value="Click me" />而不是 adiv但我正在为您提供问题的解决方案

$("#foo").click(function(){
  $(this).closest("form").submit()
});
于 2013-05-28T13:19:11.687 回答