哪些方法返回 jQuery 对象?
$(this).hasClass('something')
返回一个布尔值。
问:有哪些方法返回非 jQuery 对象的列表吗?
$(this).hasClass('something')
returns a boolean value.
Q: Is there a list of which methods return non jQuery objects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当你调用一个方法时,你调用它是有原因的。
如果您调用该方法来查找某些内容(例如,
hasClass
、is
、index
、filter
等) ,它将返回该值。如果您调用该方法来执行某些操作(例如,
animate
、load
、append
等),它将返回原始 jQuery 对象。请注意,“属性”方法(例如,
val
、html
、css
、width
等)将落入不同的类别取决于您如何称呼它们。有关更多详细信息,请查看文档。
When you call a method, you call it for a reason.
If you called the method to find something out (eg,
hasClass
,is
,index
,filter
, etc), it will return that value.If you called the method to do something (eg,
animate
,load
,append
, etc), it will return the original jQuery object.Note that "property" methods (eg,
val
,html
,css
,width
, etc) will fall into different categories depending on how you call them.For more details, check the documentation.
是的,jQuery API 参考应该提供此信息。
Yes, the jQuery API reference should provide this info.