gpt4 book ai didi

javascript - 使用 Jquery 更新全局 JS 变量并返回该值

转载 作者:行者123 更新时间:2023-11-30 08:49:07 24 4
gpt4 key购买 nike

我需要编写一个函数,我可以在纯 js 中设置全局变量,使用 jQuery 函数更新它的值,然后将通过 jQuery 函数更新的值分配给普通的 javasciprt 变量。

这是代码示例:

var foo; // global variable in plain js
var bar; // second global variable
jQuery(document).ready(function ($) {

// jquery function that updates the variable
foo = 'updated by jquery'

});

bar = foo;

console.log(bar); // console should read 'updated by jquery' but it says undefined

最佳答案

因为您仅在 ready 事件 上更新 foo 但您需要在准备就绪之前记录日志

试试这个

jQuery(document).ready(function ($) { 
// jquery function that updates the variable
foo = 'updated by jquery';
console.log(foo);
});

关于javascript - 使用 Jquery 更新全局 JS 变量并返回该值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19430385/

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