1

私はウェブページを持っています。2 つの異なる弦をランダムに切り替えてください。これを行う最も簡単な方法は何ですか?

<!-- 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 に答える