Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到一个评论说
最好设置“title”属性,.prop()而不是.attr()使用至少 1.6 版的 jQuery。
.prop()
.attr()
有人可以解释这是为什么吗?
我想你很熟悉 和之间的区别propattr。
prop
attr
由于title属性是由属性反映title的,因此实际上没有区别。
title
这取决于。
prop用于获取 HTML 对象的属性
attr用于获取属性。
jQuery的prop 文档很好地解释了这一点。