Microsoft JScript 运行时错误: 'undefined' 为空或不是对象 我的CheckBox是在GridView中
代码:<asp:CheckBoxID="CheckBox1"name="CheckBox1"runat="server"value='<%#DataBinder.Eval...
代码:<asp:CheckBox ID="CheckBox1" name="CheckBox1" runat="server" value= '<%# DataBinder.Eval(Container.DataItem,"id") %>' onclick="checkJs()"/>
下面是javascript的代码:
<script type="text/javascript">
var _selchk = document.getElementById("selchk");
function checkJs() {
var tempstr = "";
var chklist = document.form1.ChexkBox1;
for (var i = 0; i <= document.form1.ChexkBox1.length - 1; i++) {
if (document.form1.ChexkBox1.checked == true) {
tempstr = tempstr + chklist[i].value + ",";
}
}
_selchk.value = tempstr;
}
</script> 展开
下面是javascript的代码:
<script type="text/javascript">
var _selchk = document.getElementById("selchk");
function checkJs() {
var tempstr = "";
var chklist = document.form1.ChexkBox1;
for (var i = 0; i <= document.form1.ChexkBox1.length - 1; i++) {
if (document.form1.ChexkBox1.checked == true) {
tempstr = tempstr + chklist[i].value + ",";
}
}
_selchk.value = tempstr;
}
</script> 展开
展开全部
原理是在服务器端把服务器控件的客户端id以js的形式输出即可。比如你有个服务器端控件的id是test1,那你就在aspx中写
<script>
var myControllerId = <%=test1.ClientId%>
</script>
然后在其他js中用document.getElementById(myControllerId)即可获得该服务器控件。
如果你需要应用到js调用控件,我建议最好还是用Html控件吧,把runat=“server”加上和服务器控件一样可以后台调用。能给我点分不?
<script>
var myControllerId = <%=test1.ClientId%>
</script>
然后在其他js中用document.getElementById(myControllerId)即可获得该服务器控件。
如果你需要应用到js调用控件,我建议最好还是用Html控件吧,把runat=“server”加上和服务器控件一样可以后台调用。能给我点分不?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询