为什么$('someObject')。attr(“id”)[0]在IE中不起作用?

时间:2009-02-05 14:36:29

标签: jquery

以下jquery代码在firefox中有效,但在IE中返回未定义:

$('someObject').attr("id")[0]

为什么?

1 个答案:

答案 0 :(得分:10)

尝试

$('someObject').attr("id").charAt(0)

Internet Explorer中的字符串不支持[]索引器运算符。 string :: charAt()是正确的使用方法。