我有一个javascript,用于显示模态弹出窗口。一旦显示模态,页面就会重新加载。为了阻止页面重新加载,我尝试在我的函数中使用return false
语句,但它没有用。我也尝试在return false
按钮内指定OnClientClick
但是,它仍无效。
任何人都可以告诉页面正在重新加载的其他原因是什么?
JavaScript的:
function showWindow() {
var wnd = $find("<%=RadWindow1.ClientID %>");
wnd.show();
//return false;
}
Rad窗口和按钮:
<asp:Button ID="Button4" runat="server" Text="Remove" CommandName="Split" OnClientClick="showWindow(); return false"/>
<ContentTemplate>
Enter a reason to delete:<br />
<asp:TextBox runat="server" ID="ReasonTextBox" TextMode="MultiLine" Rows="5"
Width="350"/> <br/>
<asp:Button runat="server" ID="DeleteButton" Text="Delete"/>
</ContentTemplate>
</telerik:RadWindow>