您的代码看起来不错,但如果变量声明位于 dom 读取处理程序中,则它不会是全局变量......它将是一个闭包变量
jQuery(function(){
//here it is a closure variable
var a_href;
$('sth a').on('click', function(e){
a_href = $(this).attr('href');
console.log(a_href);
//output is "home"
e.preventDefault();
}
})
要使变量成为全局变量,一种解决方案是在全局范围内声明变量
var a_href;
jQuery(function(){
$('sth a').on('click', function(e){
a_href = $(this).attr('href');
console.log(a_href);
//output is "home"
e.preventDefault();
}
})
另一种是将变量设置为窗口对象的属性
window.a_href = $(this).attr('href')
为什么控制台打印未定义
您得到输出是undefined
因为即使声明了变量,您还没有使用值对其进行初始化,变量的值仅在a
单击元素后才设置,直到那时变量将具有 value undefined
。如果你没有声明变量,它会抛出一个ReferenceError