获取非最后一列td值并将title设为该值的方法
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:$(function(){$('tabletrtd:not(:last-child)').mouseover(functi...
复制代码 代码如下:
$(function() {
$('table tr td:not(:last-child)').mouseover(function() {
val = $(this).text().trim();
$(this).attr({title:val});
})
});