1

我有一个网页。我希望您在两个不同的字符串之间随机切换。最简单的方法是什么?

<!-- 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 -->
4

2 回答 2

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>
于 2013-08-19T22:16:53.433 回答
0

HTML 中没有随机化。您需要使用客户端脚本(实际上是 JavaScript)或服务器端脚本(例如 PHP)来执行此操作。选择取决于服务器端技术的可用性和目的。具体来说,您希望谷歌“看到”这两个字符串,还是随机看到其中一个,或者两者都没有?在决定了这一点之后,剩下的就相对容易了:只需使用所选编程语言的随机函数即可。

于 2013-08-20T06:16:24.833 回答