我正在编写 jQuery 插件并遇到一个小问题——无法从事件的处理函数中获取变量。看看我的例子来理解:
(function( $ ){
var methods = {
init : function( options ) {
var settings = $.extend( {
'images': [['1.jpg'],['2.jpg'],['3.jpg']]
}, options);
var lastim=2; //just for test
$.each(settings.images,function(event) {
console.log(lastim); //Getting 2, Ok!
img=new Image();
img.src=settings.thumbPath+'/'+this[0];
$(img).load(function(event)
{
lastim=5;
});
});
console.log(lastim); //Getting 2, expecting 5
}};
$.fn.testSlider = function( method ) {
if ( methods[method] ) {
return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ));
} else if ( typeof method === 'object' || ! method ) {
return methods.init.apply( this, arguments );
} else {
$.error( 'No such method'+method );
}
};
})( jQuery );
如何在每个函数之后在 lastim 变量中获得 5?提前感谢您的帮助!