我需要编写一个函数,在其中我可以在普通 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