Jquery容易变量问题

时间:2012-08-22 06:17:24

标签: jquery

我试图将变量传递给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)

})

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

您无需传递它,您可以在第二个回调函数中访问test

答案 1 :(得分:0)

var test;
$('.img').on('hover', function(){
test ='this is a test';
console.log(test);
});