我应该用.prop或.attr设置标题

时间:2012-10-09 17:35:24

标签: javascript jquery

我看到一条评论说

  

如果您使用至少1.6版本的jQuery,最好使用.prop()而不是.attr()设置“title”属性。

有人可以解释为什么会这样吗?

2 个答案:

答案 0 :(得分:2)

我猜你熟悉differences between prop and attr

title属性title attributereflected,实际上没有区别。

答案 1 :(得分:0)

取决于。

prop用于获取HTML对象的属性

attr用于获取属性。

prop documentation from jQuery解释得很清楚。