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

In - Đổi chữ trên thanh trạng thái - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh tiêu đề » Đổi chữ trên thanh trạng thái
URL: https://www.javascriptbank.com/flashing-status-bar-message.html

Đổi chữ trên thanh trạng thái © JavaScriptBank.comMột đoạn mã JavaScript khác để tạo hiệu ứng chữ thay đổi trên thanh trạng thái của trang web sau một khoảng thời gian nào đó.

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh tiêu đề » Đổi chữ trên thanh trạng thái
URL: https://www.javascriptbank.com/flashing-status-bar-message.html



JavaScript
<script language="JavaScript"><!-- Hide the script from old browsers --// Script by: Steve Bradford  (satlink@cookeville.com)//Distribute freelyvar namePrompt = prompt("Enter your name.","");function statname(){         defaultStatus = "Hello " + namePrompt + " and Welcome to the Page";}function dispname (namePrompt){         document.write(" "+namePrompt+" ");}// --End Hiding Here --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="statname()"><script language="JavaScript"><!--   {dispname(namePrompt);} //--></script></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->