我正在尝试运行变量函数,然后在其中使用声明的变量。代码
var load_map = (function(){
$('.map-container').html("<div class='loader'><div class='window'></div></div>");
$('.map-container').load( station);
history.pushState(null, null, stationUrl);
});
所以,一旦我有了这个,我就会在if语句中运行它,并在其前面加上声明的变量,但由于某种原因我不能让它们插入。
if ( values[handle] === '1' ) {
var station = 'lawrence-hill';
var stationUrl = '#lawrence-hill';
load_map();
}
任何帮助都会很棒
由于