javascript实现随机读取数组的方法_javascript技巧
程序员文章站
2022-05-18 13:52:09
...
本文实例讲述了javascript实现随机读取数组的方法。分享给大家供大家参考。具体如下:
function write_quote() { var quotes = [ 'no animals were harmed while making this page', 'made in ulm', 'this page was handmade', 'Get FireFox :-)' ]; 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程序设计有所帮助。
上一篇: PHP5下SOAP调用实现过程,php5soap调用过程
下一篇: thinkphp URL版本兼容
推荐阅读