我试图通过javascript脚本拦截提交表单,但它不起作用。
这是我的HTML代码:
<form id="myForm" action="home1" method="post">
<input type="text" id="user_email" name="email" />
<input type="password" id="user_password" name="password" />
<button type="submit" class="btn bg-olive btn-block">Sign up</button>
</form>
脚本:
$("#myForm").submit(function(event)
{
/* stop form from submitting normally */
event.preventDefault();
alert('success');
});
});
答案 0 :(得分:1)
第23行你有一个多余的});
。