码迷,mamicode.com
首页 > Web开发 > 详细

asp.net js验证为空j时,不让button执行onclick事件

时间:2014-08-13 14:47:26      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   java   io   ar   cti   javascript   

<script type ="text/javascript" language="javascript">
           function checkInput() {        
          var strMsg = "";
          var userName = document.getElementById("<%=txt_Uer.ClientID%>").value;
          var password = document.getElementById("<%=txt_Password.ClientID%>").value;
          var txt_key = document.getElementById("<%=txt_key.ClientID%>").value;      
          if (userName == "" || userName == null) {
              strMsg = "用户名"
          }
          if (password == "" || password == null) {
              strMsg += " 密码"
          }
          if (txt_key == "" || txt_key == null) {
              strMsg += " 验证码"
          }
          if (strMsg != "") {
              alert(strMsg + " 不能为空!");
              return false;
          }
      }
    </script>

   <asp:Button ID="Button1" runat="server" Text="登录" onclick="Button1_Click" OnClientClick="return checkInput()" />

asp.net js验证为空j时,不让button执行onclick事件,布布扣,bubuko.com

asp.net js验证为空j时,不让button执行onclick事件

标签:style   http   color   java   io   ar   cti   javascript   

原文地址:http://www.cnblogs.com/buy0769/p/3909989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!