标签: jquery
以下jquery代码在firefox中有效,但在IE中返回未定义:
$('someObject').attr("id")[0]
为什么?
答案 0 :(得分:10)
尝试
$('someObject').attr("id").charAt(0)
Internet Explorer中的字符串不支持[]索引器运算符。 string :: charAt()是正确的使用方法。