标签: javascript jquery
我看到一条评论说
如果您使用至少1.6版本的jQuery,最好使用.prop()而不是.attr()设置“title”属性。
.prop()
.attr()
有人可以解释为什么会这样吗?
答案 0 :(得分:2)
我猜你熟悉differences between prop and attr。
prop
attr
由title属性title attribute为reflected,实际上没有区别。
title
答案 1 :(得分:0)
取决于。
prop用于获取HTML对象的属性
attr用于获取属性。
prop documentation from jQuery解释得很清楚。