4

我有一个面板的 asp.net 应用程序。在该面板内,我有一个图像按钮和textbox. 我已经为文本框编写了一个 javascript 验证函数,它将显示警报框,以便在textbox. 现在这个函数不工作了,给出了运行时错误:

所需对象

我的代码在这里:

<asp:Panel ID="pnlTop" runat="server">
   <tr height="35px" valign="top">
      <td align="right" valign="middle" colspan="2" height="50">
         <asp:ImageButton ID="imgbtnGOTO" runat="server" ToolTip="View Specific Record" BorderWidth="0"
                                ImageAlign="AbsMiddle" OnClientClick="javascript:return fnCheck()"></asp:ImageButton>&nbsp;&nbsp;
         <asp:TextBox ID="txtPagingGoto" CssClass="clsTableCellLeft" Width="215px" runat="server" CausesValidation="true"></asp:TextBox>
      </td>
   </tr>
</asp:Panel>

我的 Javascript 函数是:

function fnCheck() {
    if ((document.getElementById("txtPagingGoto").value).length == 0) {
        alert("The textbox should not be empty");
    }
}

请为此提出解决方案。

4

3 回答 3

3
function fncheck()
{
        var pgng = document.getElementById("<%=txtPagingGoto.ClientID%>").value.trim();
        if(pgnd == "")
        {
            alert('The textbox should not be empty...');
            document.getElementById("<%=txtfname.ClientID%>").focus();
            return false;
        }
}
于 2013-10-08T10:49:21.237 回答
3

尝试这个 :

  function fnCheck() {
         if ((document.getElementById("<%=txtPagingGoto.ClientID%>").value).length == 0) {
             alert("The textbox should not be empty");
    }
}

document.getElementById获取与服务器端 ID 不同(并非总是)的运行时生成的 ID。

一种方法是像我一样使用黄色代码。

另外:请考虑使用TRIM方法。(如果你需要处理它)。

于 2013-10-08T10:43:16.113 回答
0
<html>
  <head>
    <script type="text/javascript">
     function validate()
        {
         if(document.getElementById("aa").value=="")
               {
                 alert("this textbox should not be empty");
               }
        }
    </script>
   </head>
  <body>
 <input type="txt" id="aa"/>

  <input type="button" value="submit" onclick="validate()"/>`

  </body>
</html>
于 2014-05-11T07:38:49.600 回答