获取非最后一列td值并将title设为该值的方法
内容摘要
复制代码 代码如下: $(function() { $('table tr td:not(:last-child)').mouseover(function() { val = $(this).text().trim(); $(this).attr({title:val}); }) });
文章正文
复制代码 代码如下:
$(function() {
$('table tr td:not(:last-child)').mouseover(function() {
val = $(this).text().trim();
$(this).attr({title:val});
})
});
代码注释