我正在寻找一种解决方案,其中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的情况下实现吗?如果没有,我会欣赏一个我可以操作的基本例子:)
答案 0 :(得分:0)
是的,没有Javascript就可以实现。这取决于您使用的服务器技术。您可以创建模板并插入serverside赎金图像标签。 也可以通过javascript来实现。 如果你想使用jQuery,你可以这样做:
$(function(){
$(".Grid_4 fl").html(generateRandomImageHtml());
});