我的网页内容是:
<form id="form1" runat="server"> <div> <asp:TextBox ID="txtAccountNumber" runat="server"></asp:TextBox> <asp:Button ID="btnTransfer" runat="server" Text="Transfer" OnClientClick="ValidateTheAccountNumber()" /> </div> </form>
我写了这个剧本:
function ValidateTheAccountNumber(){ 返回false; }
我认为,使用这个js函数,页面无法回发。但它确实如此。请告诉我,我的错误点是什么?
谢谢!
答案 0 :(得分:2)
您还必须返回函数调用的结果
... OnClientClick="return ValidateTheAccountNumber()" />