我正在寻找一种解决方案,其中 div 内容会在页面加载时随机更改。很像页面加载时的 JavaScript 图像。我在下面的代码中做了进一步的注释。
我可以在页面加载时使用 JavaScript 对图像等内容进行随机化,但这里是 div,我不确定如何更改其中的内容。
<div class="row BSlots">
<div class="Grid_4 fl">
/* This would be the code which would change */
/* For example once it would be <div class="hello"><p>Hi</p></div> and the other <iframe="Link"/> */
</div>
<div class="Grid_4 fr">
<script>Widget2(); /* Don't mind this, loading an actual JS image randomizer here */</script>
</div>
</div>
这可以不使用JS来实现吗?如果没有,我会很感激一个我可以摆弄的基本例子:)