DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> javascript實現隨機讀取數組的方法
javascript實現隨機讀取數組的方法
編輯:關於JavaScript     

本文實例講述了javascript實現隨機讀取數組的方法。分享給大家供大家參考。具體如下:

function write_quote() {
  var quotes = [
    'no animals were harmed while making this page',
    'made in ulm',
    'this page was handmade',
    'Get <a href="http://www.mozilla.org/products/firefox/">FireFox</a> :-)'
  ];
  var r = Math.round(Math.random() * (quotes.length-1));
  // write the quote
  document.write(quotes[r]);
  // or replace an HTML element:
  // document.getElementById("quote").innerHTML = quotes[r];
}

希望本文所述對大家的javascript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved