gpt4 book ai didi

javascript - 如何选择多个 jQuery 对象?

转载 作者:行者123 更新时间:2023-11-29 18:21:34 25 4
gpt4 key购买 nike

比如我想同时选择文档和窗口元素。

$(window, document).doStuff();

不起作用。可能是因为根据文档,第二个参数是一些“上下文”的东西......

基本上我也在寻找替代品

$(window).doStuff();
$(document).doStuff();

最佳答案

var one   = $("#1");
var two = $("#2");
var three = $("#3");
var four = $("#4");



$([one, two, three, four]).each(function() {
// your function here
});

document ready 事件已经在 HTML-Document 加载并且 DOM 准备就绪时执行,即使所有图形都没有尚未加载。

如果你想在窗口加载之前为某些元素连接你的事件,那么 $(document).ready 是正确的地方。

关于javascript - 如何选择多个 jQuery 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18132648/

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