尝试这个简单的代码,我很惊讶它没有用,我们开始吧:
<form method="get" action="" >
<input type="submit" value="validate" onclick="redirect(); alertIt(); "/>
</form>
<script>
function redirect(){
window.location.href = "test.html" ;
}
</script>
<script>
function alertIt(){
alert("redirect");
}
</script>
该代码只是应该在单击提交按钮时重定向到“test.html”,但它失败了。另一方面:alertIt() 工作正常......我的问题如下:将事件处理到表单中是否有一些我应该知道的特殊规则?