我正在慢慢熟悉 Javascript,现在我有一个非常简单的问题
如果我的术语不是当场,请询问和/或纠正我
我怎样才能在同一个脚本(文件)中拥有这两个(或更多)行为。
$(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();
});
它们分别工作正常,但将它们放在一起似乎只有最后一个正在执行