<html> <head> <title>随机显示文字</title> <style> #text { border: 1px solid #FA9150; width: 300px; background: #FEF1E9; color: #000000; line-height: 50px; text-align: center; font-size: 14px; font-weight: bold; } </style> <script> function content() { var butong_net = new Array('有朋自远方来,不亦乐乎','己所不欲,勿施于人','四海之内皆兄弟也','学而不厌,诲人不倦','工欲善其事,必先利其器','人而无信,不知其可也','礼之用,和为贵'); var butong_net2 = Math.floor(Math.random() * butong_net.length); var text = document.getElementById("text"); text.firstChild.nodeValue = butong_net[butong_net2]; } window.onload = content; </script> </head> <body> <p id="text">论语</p> </body> </html>
本文作者为风尘,转载请注明。