如果我有以下vars
var $headers = $("#myTbl th").not(":first");
var $this = $(this);
如何匹配 $ this.text(); 到 th 里面的 title 标签内的文字?
<th title="match this title">value</th>
这似乎不起作用:
$headers.filter(":contains(" + $this.text() + ")");
答案 0 :(得分:2)
var title = $("#myTbl th").not(":first").attr("title");
var $headers = $("#myTbl th[title='"+title+"']");
类似的东西应该这样做