onsubmit="return check();"和onsubmit=&quo 财富值40

2016-10-29 08:32发布

<form name="Form" action="t" method="post" onsubmit="return check();"> 

如果这句没有return有什么不同?

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
12条回答

onsubmit="return false;" 将无论何时都阻止表单的提交
onsubmit="return check();" 是否提交表单取决于check()的返回值
onsubmit="check();" check()的返回值无影响

一周热门 更多>