我试图将变量传递给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)
})
感谢您的帮助。
答案 0 :(得分:1)
您无需传递它,您可以在第二个回调函数中访问test
。
答案 1 :(得分:0)
var test;
$('.img').on('hover', function(){
test ='this is a test';
console.log(test);
});