1
私は正方形を取るjQueryプラグインを作成しようとしていますが、その中に3つの正方形を入れておき、それらの3つの正方形内に3つの小さな正方形を置きます。私は、例えば、必要とするか、または完全なコードが欲しい、これが把握するために私自身の問題であるとして、私はjQueryのプラグインが自分自身を呼び出すようにする方法を見つけ出すことはできませんしません。再帰jQuery関数を作成するにはどうすればよいですか?
(function($){
$.fn.squares = function(type) {
var recursionDepth = 1;
return this.each(function() {
var $this = $(this);
if (++ recursionDepth > 3) {console.log('rec lim');return;}
// put div.squares in $this
$('.square', $this).squares();
});
};
})(jQuery);