我有一个网页。我希望你在两个不同的字符串之间随机切换。这样做最简单的方法是什么?
<!-- BEGIN #random part -->
<section id="countdown">
<div class="countdown-background">
<h1>This is the first random string</h1>
<h1>I'd like this to be the second random string</h1>
</div>
<div class="clear"></div>
<div class="countdown-background">
<p>Here's another first random string</p>
<p>And here's the second of the second random string</p>
</div>
</section>
<!-- END #random part -->
答案 0 :(得分:1)
当然你可以尝试使用javascript。
<body>
<p id="pp">
</p>
<script>
var strarray = new Array("Random string1","Random string2","Random string3");
randomnum = Math.round(Math.random()*2);
para = document.getElementbyId('pp');
para.innerHTML = strarray[randomnum]
</script>
</body>
答案 1 :(得分:0)
HTML中没有随机化。您需要使用客户端脚本(JavaScript,在实践中)或使用服务器端脚本(例如,PHP)来执行此操作。选择取决于服务器端技术的可用性和目的。具体来说,您是否希望Google“看到”两个字符串,或者随机选择其中一个字符串,或者两者都不是?在做出决定后,其余部分相对容易:只需使用所选编程语言的随机函数。