如果输入无效,我会尝试显示警报,但 OnClientClick 不起作用,这是我的代码:
function validation1() {
if (document.getElementById('firstname').value == "" || document.getElementById('firstname').value == "First Name..." ){
alert("Please Enter First Name");
}
if(document.getElementById('lastname').value == "" || document.getElementById('lastname').value == "Last Name..."){
alert("Please Enter Last Name");
}
}
<asp:Button runat="server" ID="SearchButton" Text="Instant Search" OnClick="SearchButton_Click" OnClientClick="validation1" />
我的代码在母版页中,所以这可能是个问题吗?
尝试了许多不同的方法来使用 OnClientClick 调用该函数,但没有成功: