»
Tiếng AnhTiếng PhápTiếng Việt

In - Danh ngôn hiện ngẫu nhiên - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Chữ » Hoạt hóa » Danh ngôn hiện ngẫu nhiên
URL: https://www.javascriptbank.com/random-quote-genertor-v2.html

Danh ngôn hiện ngẫu nhiên © JavaScriptBank.comMột đoạn mã khác để các câu danh ngôn ngẫu nhiên tại một vị trí nào đó trên trang web. Cơ sở dữ liệu về danh ngôn được lưu trong một mảng.

Phiên bản đầy đủ: jsB@nk » Chữ » Hoạt hóa » Danh ngôn hiện ngẫu nhiên
URL: https://www.javascriptbank.com/random-quote-genertor-v2.html



CSS
<STYLE>#quote {FONT-SIZE: 25px; COLOR: #ff0000; TEXT-ALIGN: center}</STYLE><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


JavaScript
<SCRIPT language=JavaScript type=text/javascript>/*Title: Random Quote Genertor Version 2Created by: Daniel Standley Email is standleydj@gmail.comWebsite is standleydj.awardspace.com*/// The quotes that appear on the page.quotes = new Array("The earth does not belong to us we belong to the earth","Never get so busy making a living that you for forget to make a life","I have no special talents I am only passionately curious - Albert Einstein","He who ceases to seek knowledge is as good as dead")//Alter nothing below the script wont work if you do.qte = quotes.lengthfunction chooseQuote(){randomNum = Math.floor((Math.random() * qte))document.getElementById('quote').innerHTML = quotes[randomNum]}</SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload=chooseQuote()><DIV id=quote></DIV></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->