我检查了其他代码,看起来我只需要添加return false就可以了。但是,它不起作用,因为它仍然回发页面。
<asp:Button ID="_btnSearch" Text="Search"
onclientclick="CheckForEmptySearchBox()" />
<script type = "text/javascript">
function CheckForEmptySearchBox()
{
var boxContent = document.getElementById
("_ctl0_contentMain__lvTSEntry_ctrl0__txtClientName").value;
if (boxContent == null || boxContent == "") {
alert("Please enter search criteria");
return false;
}
}
</script>