什么是“返回假”;用于JavaScript的onclick事件意味着什么?
<input
type="button"
runat="server"
id="btnCancel"
value=" Cancel "
style="width:70px;"
onclick="document.location.href = 'ReportPanel.aspx'; return false;"
/>
在onclick事件中。它有return false;
这是什么意思?如果return true;
?
答案 0 :(得分:10)
它向浏览器说“事件从未发生过”。如果您有一个提交按钮而不是一个简单的按钮并且没有“返回false”,那么当您单击它时(在执行javascript之后)将提交表单。