在列标题视网格中获取所选对象
本文关键字:获取 对象 网格 标题 视网 | 更新日期: 2023-09-27 17:56:29
我有这段代码:
$(document).ready(function(){
var input
$("#<%=GridViewBin.ClientID%> tr th a").hover(function() {
$("#<%=GridViewBin.ClientID%> tr th input").each(function (index) {
//HERE I HAVE TO get selected object, HOW?
input = $(this);
})
$(input).show();
},function() {
$(input).hide();
});
});
我想获取有关选择显示或隐藏的输入的 ID。此输入位于网格视图的列标题中。
有什么线索或帮助吗?
$(document).ready(function(){
var input;
$("#<%=GridViewBin.ClientID%> tr th a").hover(function() {
$("#<%=GridViewBin.ClientID%> tr th input").each(function (index) {
//get selected object
input = $(this);
})
$(input).show();
},function() {
$(input).hide();
});
});
变量声明后缺少";"。