私はゆっくりと Javascript に慣れてきましたが、今では本当に簡単な質問があります。
私の用語がその場にない場合は、私に尋ねたり、修正したりしてください。
これら 2 つ (またはそれ以上) の動作を同じスクリプト (ファイル) に含めるにはどうすればよいですか。
$(document).ready(function(){
var $container = $('div.fillField'),
divs = $("div.onethird").get().sort(function(){
return Math.round(Math.random())-0.5;
}).slice(0,3),
$clonedDivs = $(divs).clone();
$container.html('');
$clonedDivs.each(function( index ) {
$container.append(this);
if (index % 3 == 0) {
$(this).css("margin-left", "0%");
} else {
$(this).css("margin-left", "2%");
}
});
$clonedDivs.show();
//break & next command
var $container = $('div.fillField'),
divs = $("li.onethirdAll").get().sort(function(){
return Math.round(Math.random())-0.5;
}),
$clonedDivs = $(divs).clone();
$container.html('');
$clonedDivs.each(function( index ) {
$container.append(this);
});
$clonedDivs.show();
});
別々にそれらは正常に動作しますが、それらを一緒にすると、最後のものだけが実行されているようです