我有一个没有宽度的表格数据。当我在触摸浏览器结束时有多个列时,标题颜色应该更改为其他颜色。这可能与CSS?还是用css表达式? http://jsfiddle.net/AGrJJ/
答案 0 :(得分:0)
这是jquery JS的简单小提琴
http://jsfiddle.net/HerrSerker/AGrJJ/2/
$('th').each(function() {
if ($(this).offset().left + $(this).width() > $('body').width()) {
$(this).css('backgroundColor', 'yellow');
}
})