gpt4 book ai didi

javascript - 如何在 jQuery 的匿名函数中获取变量?

转载 作者:行者123 更新时间:2023-11-29 19:26:24 25 4
gpt4 key购买 nike

如何将变量传递给匿名函数。我想将几个变量传递给匿名函数,基于该函数,它将创建一个新字符串。在此代码中,我想传递 url、时间戳、id 和计划。

  <script>
jQuery(document).ready(function() {
console.log("check")
var newUrl=url+'?id='+id+'&timestamp='+timestamp+'&plan='+plan;
console.log(newUrl);
createStoryJS({
type: 'timeline',
width: '1250',
height: '240',
source: newUrl,
embed_id: 'my-timeline'
});
});
</script>

最佳答案

您可以声明一个具有全局作用域的变量,并在函数调用中使用它,如下所示

var globalVar = 1;
jQuery(document).ready(function() {
console.log(globalVar);
});

关于javascript - 如何在 jQuery 的匿名函数中获取变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30543247/

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