1. 程式人生 > >this多樣用法

this多樣用法

$(function(){
		(function(){
			abc([1,2,3],function(judge){
				console.log(this);
				console.log(judge);
			})
		})()
	});
	function abc(arr,callback){
		callback&&callback.call([2,4,6,8],"true");
	}