Jquery - 从 IE 9 中的 TR html 标签获取属性

发布于 2025-01-04 10:26:28 字数 357 浏览 0 评论 0原文

我编写了一段 jQuery 代码来从 html 中的 TR 标记获取属性。该代码可以在 IE 8 中运行,但是当我在 IE 9 中运行该代码时,出现错误“预期函数”。代码如下:

$(".grid tr").each(function () {

  //I've inserted an attribute called idRow in each grid row. 
  if(this.attributes("idRow") != null) //I get the "Function expected error" here
  {
      ...
  }

});

代码有什么问题?为什么它可以在 IE 8 中运行?

I have written a jQuery code to get an attribute from a TR tag in html. The code works in IE 8, but when I run that in IE 9 I get a error "Function expected". The code is below:

$(".grid tr").each(function () {

  //I've inserted an attribute called idRow in each grid row. 
  if(this.attributes("idRow") != null) //I get the "Function expected error" here
  {
      ...
  }

});

What's the code problem? Why it works in IE 8?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

稚然 2025-01-11 10:26:28

要采用这种方法,您需要...

this.attributes.getNamedItem('idRow').nodeValue

或者...

this.attributes.item('idRow').nodeValue

...不过,我建议简单地使用 getAttribute()

this.getAttribute('idRow')

To take that approach, you'd need...

this.attributes.getNamedItem('idRow').nodeValue

or...

this.attributes.item('idRow').nodeValue

...although, I'd suggest simply using getAttribute().

this.getAttribute('idRow')
疏忽 2025-01-11 10:26:28

怎么样

if($(this).attr('idRow') != undefined) {
 ...
}

How about

if($(this).attr('idRow') != undefined) {
 ...
}
暖伴 2025-01-11 10:26:28

我宁愿使用

$(".grid tr").each(function (tr) {

  //I've inserted an attribute called idRow in each grid row. 
  if(tr.attributes("idRow") != null) //I get the "Function expected error" here
  {
      ...
  }

});

I'd rather use

$(".grid tr").each(function (tr) {

  //I've inserted an attribute called idRow in each grid row. 
  if(tr.attributes("idRow") != null) //I get the "Function expected error" here
  {
      ...
  }

});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文