JQuery每个问题?

时间:2014-05-20 12:11:33

标签: jquery each

因为这个html代码是由jquery插件(JQgrid)自动生成的,所以我无法编写html代码:

这是我的HTML代码: enter image description here

这是js代码:

$("td").attr("aria-describedby","list2_estimated").each(function(){
      alert(this.text);
});

我想提醒来自<td>的文本值,在我的情况下它是空的警报。我该怎么做才能获得文本值? THX

3 个答案:

答案 0 :(得分:1)

$("td[aria-describedby = 'list2_estimated']").each(function(){
      alert($(this).text());
});

答案 1 :(得分:0)

使用 .prop()属性选择器来获取文本

 $("td").prop("aria-describedby","list2_estimated").each(function(){
      alert($(this).text());
});

答案 2 :(得分:0)

您的td中不包含任何文字,如果您想获得td的标题,请像这样使用

$("td[aria-describedby='list2_estimated'").each(function () {
    alert($(this).attr("title"));
});