gpt4 book ai didi

javascript - 如何返回不同的值

转载 作者:行者123 更新时间:2023-11-30 11:37:33 25 4
gpt4 key购买 nike

Jquery 如何链接并返回多个值?

我知道你可以链接:

const $ = {
a() {
return this;
}
b() {
return this;
}
}

$.a().b()

下面的例子不言而喻:

$('div').find('p').hide().css() // find an apply style
$('div').find('p') // return all the "p"

查看我的 example

jQuery 如何返回所有的 p 并保留插件实例?

我怎样才能实现相同的行为?

如何知道在find()之后是否还有另一个调用?

谢谢。

最佳答案

所有这些 API 成员都返回一个 jQuery 对象。 jQuery API 恰好包含所有这些成员。这就是您如何能够对同一对象进行链式调用。

查看文档:

In API calls that return jQuery, the value returned will be the original jQuery object unless otherwise documented by that AP

show()返回一个 jQuery 类型

hide()返回一个 jQuery 类型

find()返回一个 jQuery 类型

请注意 css()不返回 jQuery 类型,因此您不能将其链接起来。

关于javascript - 如何返回不同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43814856/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com