0

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

})

谢谢您的帮助。

4

2 回答 2

1

你不需要传递它,你可以test在第二个回调函数中访问。

于 2012-08-22T06:19:40.963 回答
0
var test;
$('.img').on('hover', function(){
test ='this is a test';
console.log(test);
});
于 2012-08-22T06:26:32.577 回答