我正在尝试将变量传递给 Jquery 中的回调函数
我有:
var test;
$('.img').hover(function(){
test='this is test';
}, function (){
//how do I pass the test value to the callback function..??
console.log(test)
})
谢谢您的帮助。
我正在尝试将变量传递给 Jquery 中的回调函数
我有:
var test;
$('.img').hover(function(){
test='this is test';
}, function (){
//how do I pass the test value to the callback function..??
console.log(test)
})
谢谢您的帮助。