哪些方法返回 jQuery 对象?

发布于 2024-08-31 07:53:25 字数 92 浏览 3 评论 0原文

$(this).hasClass('something') 返回一个布尔值。

问:有哪些方法返回非 jQuery 对象的列表吗?

$(this).hasClass('something') returns a boolean value.

Q: Is there a list of which methods return non jQuery objects?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鸵鸟症 2024-09-07 07:53:25

当你调用一个方法时,你调用它是有原因的。

如果您调用该方法来查找某些内容(例如,hasClassisindexfilter 等) ,它将返回该值。
如果您调用该方法来执行某些操作(例如,animateloadappend 等),它将返回原始 jQuery 对象。

请注意,“属性”方法(例如,valhtmlcsswidth 等)将落入不同的类别取决于您如何称呼它们。

有关更多详细信息,请查看文档

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.

去了角落 2024-09-07 07:53:25

是的,jQuery API 参考应该提供此信息。

Yes, the jQuery API reference should provide this info.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文