熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

時鐘廣告跳轉狀態欄等JS代碼

2022-06-13   來源: JSP教程 

  判斷網頁是否過期 getTime()

  用於實現廣告過期

<head>
<h>判斷網頁是否過期</h>
<hr>
<script>
<!
today = new Date() //取得現在的時間
TheDay = new Date() //取得結束的時間 // ::
//如果 todaygetTime() > TheDaygetTime()
if (todaygetTime()>TheDaygetTime())
{
documentwrite(<h>抱歉你訪問的網頁已經過期!</h>) }
else
{
documentwrite(<font size=>你的網頁尚未過期</font>)
}
//>
</script>

在線時鐘實例 setTimeout()函數

  <head>
<script>
<!
function showtime()
{
 documentCLOCKALarmvalue = new Date()toString()
 TimerID = setTimeout(showtime())
}
//>
</script>
</head>
<body onLoad=showtime()>
<Form name=CLOCK>
<input name=ALarm type=text size= value=>
如無效果請刷新
</form>
</body>

  其中:setTimeout()函數
TimerID = setTimeout(showtime)
通過setTimeout 來刷新時間 間隔=

  status window自帶函數狀態欄提示

  <html>
<head>
<meta httpequiv=ContentType content=text/html; charset=gb>
<title>無標題文檔</title>
<script>
<!
windowdefaultStatus=這裡是主頁
//>
</script>
</head>
<body>
<a onmouseover=windowstatus=;return true>abc</a><br>
<a onmouseover=windowstatus=;return true>def</a>
</body>
</html>

  setTimeout 函數自動鏈向新網站

  <html>
<head>
<meta httpequiv=ContentType content=text/html; charset=gb>
<script language=JavaScript>
<!
function Redir()
{
a = //在此輸入新網站的網址
TimerID=setTimeout(windowlocation)
}
//>
</script>
</head>
<body onload=Redir()>
我們的網站搬新家了!請單擊下面的超鏈接進入我們的新網站<br>
<a >網頁陶吧</a>
<br> 秒後自動進入新的網站請耐心等待
</body>
</html>

  廣告字幕實例

  <head>
<script>
<!
var ShowString =
 +SpaceThe final frontier These are the
       +voyages of the Starship Enterprise its
       +continuing mission: to explore strange
       +new worlds to seek out new life and new
       +civilizatins to boldly go where no man
       +has gone before______________________________
       +宇宙人類的最終邊界太空船企業號的旅程
       +是為了探索陌生新世界找尋新生命與新文明
       +駛向人類足跡從未的領域
//
var ShowWidth =
var ShowHead =
var ShowTail = ShowWidth
var ShowLength= ShowStringlength
//
function marquee()
{
var DisplayString
if (ShowHead<ShowTail)
 DisplayString = ShowStringsubstring(ShowHeadShowTail)
 else
 DisplayString = ShowStringsubstring(ShowHeadShowLength)
 +ShowStringsubstring( ShowTail)
//
ShowHead = (ShowHead + ) % ShowLength
ShowTail = (ShowTail + ) % ShowLength
//
documentRUNNINGSHOWPADvalue = DisplayString
//
TimerID = setTimeout(marquee())
}
//>
</script>
</head>
<body onload=marquee()>
<center>
<form name=RUNNING>
<INPUT NAME=SHOWPAD size= Type=text value=>
如無效果請刷新
</form>
</center>
</body>

  說明:
設置秒後再次調用MARQUEE()函數
TimerID = setTimeout(marquee())
廣告字幕觸發事件
<body onload=marquee()>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19493.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.