修改<!/强>
我可以将此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>
答案 0 :(得分:2)
更新为编辑:
我认为您的代码有点尴尬,您应该使用<button>Click me to submit</button>
或<input type="submit" value="Click me" />
代替div
,但我会为您提供问题的解决方案< / p>
$("#foo").click(function(){
$(this).closest("form").submit()
});