重装时随机显示Div

时间:2018-11-30 08:48:55

标签: jquery html random

<div class='quote'>
</div>
<div class='layout_atest news'>
</div>
<div class='quote'>
</div>

目前,我在“ quote” div中混合了一些新闻条目和一些客户评论。我需要两个引号在每次重新加载时随机显示在几个“ quote” div中。到目前为止,我具有此功能

$(function() {
    var random=Math.floor(Math.random() * $('.quote').length);
    $('.quote').hide().eq(random).show().css('display','inline-block');
});

但是它仅显示一个引号div,无论如何,我可以在重新加载时显示两个随机div,而无需后续重复。

0 个答案:

没有答案