在我的应用程序中,我有提交按钮,在我的数据库中也调用存储过程也在同一页面上有一个需要数据的文本框。我在该文本框中使用了必需的字段验证器。如果文本框为空,则我的提交按钮和Ajax符合事项并确认验证。我需要检查该文本框是否与数据文件一起存档,并且只有在该按钮触发后才会触发。在需要的字段验证之前,我不想要弹出窗口。
答案 0 :(得分:2)
您可以使用类似
的内容var button = document.getElementById('button'); // or whatever ID your button has
var textbox = document.getElementById('textbox'); //or whatever ID your input has
button.onclick = function() {
if (textbox.value === "") {
return false;
}
else {
return true;
}
}
答案 1 :(得分:0)
您可以使用此代码
jQuery('#<%= button.ClientID %>').click(function(){
if(jQuery('#<%= textbox.ClientID%>').val()=='')
{
return false;
}
else
{
return(confirm('Are you sure?'));
}
});