我尝试了不同的 jQuery 方法:
var num = $(this).attr('colspan').text();
var num = $(this).attr('colspan').val();
var num = $(this).('td[colspan]').val();
var num = $(this).('td[colspan]').text();
var num = $(this).('td[colspan]').attr('id');
这来自 W3Schools:
var num = document.getElementById($(this)).colSpan;
没有运气。在我的
console.log()
中它要么是未定义的,要么是未捕获的 TypeError编辑:
我已经尝试了您的建议,但仍然无效。这是上下文中的部分代码:
$('table td').on('mouseenter mouseleave', function(e){
var th, index, id, td;
if(e.type === 'mouseenter'){
id = $(this).attr('id');
td = $(this);
var num = $(this).attr('colspan');
console.log("td = "+td+" colspan = "+num);
td.addClass('highlight');
var $table_body_scroll=$('table.body_scroll'),
header_table=$( '<table aria-hidden="true" class="header_table"><thead><tr><td></td></tr></thead></table>' ),
scroll_div='<div class="body_scroll"></div>';
var $targetHeaderTable=$("table.header_table").eq(index);
$('thead tr th').each(function() {
console.log("th = "+$(this).text());
console.log("id = "+id);
if ($(this).text() == id)
{
var num = td.attr('colspan');
//console.log("td = "+td+" colspan = "+num);
$(this).addClass('highlight');
}
});
index = $('td').index($(e.target));
$(e.target).prevAll().addClass('highlight');
}else{
$('.highlight').removeClass('highlight');
}
});
和我的控制台日志:
td = [object Object] colspan = undefined
最佳答案
使用 prop
获取为属性/属性设置的值,这将反射(reflect)页面加载后使用 JS 对属性所做的任何更改:
$(this).prop("colSpan");
JS fiddle : http://jsfiddle.net/9u8L2/1
关于javascript - 如何获取colspan的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21648790/