JavaScript之重新整理顯示隨機文本

來源:互聯網
上載者:User

標籤:

<html>
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>隨機文本</title>
</head>
<body>
<script type="text/JavaScript">
var a = Math.random() + ""//通過Math.random()產生一個隨機數
var rand1 = a.charAt(5)//到這個數的第五個字元(實際還是從0~9的數字)
quotes = new Array()//建立訊息數組
quotes[1] = ‘長風破浪會有時‘//這裡分配6句隨機出現的文本
quotes[2] = ‘直掛雲帆濟滄海‘
quotes[3] = ‘山重水複疑無路‘
quotes[4] = ‘柳暗花明又一村‘
quotes[5] = ‘問渠那得清如許‘
quotes[0] = ‘為有源頭活水來‘
var quote = quotes[rand1]//由隨機數選擇一句話
</script>
<script type="text/JavaScript">
document.write( quote )//將上面選擇的話寫進頁面
</script>
</body>
</html>

JavaScript之重新整理顯示隨機文本

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.