Jquery - 从 IE 9 中的 TR html 标签获取属性
我编写了一段 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要采用这种方法,您需要...
或者...
...不过,我建议简单地使用
getAttribute()
。To take that approach, you'd need...
or...
...although, I'd suggest simply using
getAttribute()
.怎么样
How about
我宁愿使用
I'd rather use