这是我在test.js中的配置:var still; jQuery(function(still){ still = 5; }); console.log(still); 我想在控制台上显示变量“ still”(5),但对我来说显示“ undefined”!谁能帮我:)!谢谢 最佳答案 检查此代码。从函数中删除仍然作为参数var still; jQuery(function(){ still = 5; }); console.log(still);