获取非最后一列td值并将title设为该值的方法 时间:2020-05-13 人气:0 复制代码 代码如下: $(function() { $('table tr td:not(:last-child)').mouseover(function() { val = $(this).text().trim(); $(this).attr({title:val}); }) }); 加载全部内容