1

我正在寻找一种解决方案,其中 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来实现吗?如果没有,我会很感激一个我可以摆弄的基本例子:)

4

1 回答 1

0

是的,它可以在没有 Javascript 的情况下实现。这取决于您使用哪种服务器端技术。您可以创建一个模板并插入服务器端勒索图像标签。也可以通过 javascript 来实现。如果你想使用 jQuery,你可以这样做:

$(function(){
  $(".Grid_4 fl").html(generateRandomImageHtml());
});
于 2013-05-04T19:47:19.393 回答