我有一个计算屏幕宽度的功能
var screenWidth = jQuery(window).width();
function checkScreenSize()
{
screenWidth = jQuery(window).width();
}
jQuery(window).on("resize", checkScreenSize).resize();
如何在另一个函数中使用此screenWidth?
编辑:
我想在这里访问此变量,例如:
function showContent() {
if(screenWidth <= 1000)
{
console.log(screenWidth);
}
}
最佳答案
由于screenWidth
是在您提到的function
之外声明的全局变量,因此可以直接访问它:
function foo() {
console.log(screenWidth);
}
关于javascript - 如何在另一个函数中访问变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41532000/