在javascript中找不到clientid
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在javascript中找不到clientid相关的知识,希望对你有一定的参考价值。
我得到这样的错误:
'System.Web.UI.WebControls.TextBox'
不包含'ClentID'
的定义,也没有扩展方法'ClentID'
接受'System.Web.UI.WebControls.TextBox'
类型的第一个参数(你是否缺少using指令或汇编引用?)
这是我的代码
if (document.getElementById("<%=txt_stuname.ClientID %>").value == "") {
alert("Student Name cannot be blank");
document.getElementById("<%=txt_stuname.ClentID %>").focus();
return false;
}
答案
将ClentID
改为ClientID
if (document.getElementById("<%=txt_stuname.ClientID %>").value == "") {
alert("Student Name cannot be blank");
document.getElementById("<%=txt_stuname.ClientID %>").focus();
return false;
}
以上是关于在javascript中找不到clientid的主要内容,如果未能解决你的问题,请参考以下文章
在 Objective-C 代码中找不到 windowScriptObject 方法
ace.edit在mat-tab中找不到div#javascript-editor
Qt QWebEngineView在发布但在调试中找不到javascript文件
打字稿错误使用googlemaps javascript API时在ionic2中找不到名称'google'
stylesheet_pack_tag 在带有 webpacker gem 的 rails 5.1 中找不到 app/javascript/src/application.css