gpt4 book ai didi

javascript - 取一个函数的值

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

我有这个功能:

x = function() {
for (i = 0; i < window.document.querySelectorAll('.btn[href*="/p"]').length; i++) {
return window.document.querySelectorAll('.abtk[href*="/url"]')[i].href;
}
};

当我在 Chrome 的控制台中测试它时,我希望在 x 中有函数的结果,现在在 self 中有函数。我该怎么做?

最佳答案

制作Immediate invoke function ,所以函数在定义后立即执行。下面是它的语法

x = (function() {
for (i = 0; i < window.document.querySelectorAll('.btn[href*="/p"]').length; i++) {
return window.document.querySelectorAll('.abtk[href*="/url"]')[i].href;
}
})();

观察函数声明末尾的 ()

关于javascript - 取一个函数的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33433841/

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