单击一个类,但元素显示在另一个类中

时间:2013-04-10 10:21:55

标签: javascript html5 css3

for (var i = 0; i < 20; i++) {
    rand = Math.floor(Math.random() * jewels.length)
    html += '<div class="Card1 ' + jewels[rand] + '" id="ship' + i + '" style="top:72px; left:245px;" ></div>'
    jewels.splice(rand, 1);
}

for (var i = 0; i < 4; i++) {
    html += '<div class="Card2" id="stac' + i + '" style="top:' + (135 + (i * 13)) + 'px; left:245px;" ></div>'
}

$('.Card1').click(function () {

});

当我点击card1课程时,我想在课程卡片2中随机显示4个项目(20个)?

0 个答案:

没有答案