常用Javascript精選(二)

來源:互聯網
上載者:User

(一)、設為首頁
 
<a href=http://www.thwd.net
onMouseOver=this.style.behavior="url(#default#homepage)";
this.setHomePage("http://www.thwd.net/";);>設為首頁</a>

(二)、收藏本站

<a href=javascript:window.external.addFavorite("http://www.jzzy.com";,"建站資源網")>收藏本站</a>

(三)、在視窗的狀態區顯示滾動資訊
(1) 在BODY中加入代碼
<script
language="javascript">
var msg="歡迎訪問建站資源網,在這裡有你會有所收穫的!";
var i=1

function scroll()
{
mess=msg.substring(i,msg.length)+"
"+msg.substring(0,i)
window.status=mess
i++;
if (i>=msg.length)
i=1; //設定不停滾動
setTimeout("scroll()",200); //設定捲動速度
}
</script>

(2)在BODY標籤中:
<body onload="scroll()">
(四)、在頁面加入目前時間

<script language="javascript">
tdy=new Date();

document.write("目前時間:",tdy.getHours());

document.write(":",tdy.getMinutes());

document.write(":",tdy.getSeconds());
</script>

(五)、前進、後退按鈕
<input type="button" value="<-"
onclick="history.go(-1)">
<input type="button" value="->"
onclick="history.go(1)">

(六)、加入頁面最後修改日期
<script language="javascript">

document.write("本頁最後編輯日期:");
document.write(document.lastModified)

</script>

(七)、前進、後退按鈕
<font onclick="history.go(-1)"> 前一頁</font>

<font onclick="history.go(-2)"> 前兩頁</font>
<font
onclick="history.go(-3)"> 前三頁</font>
<font
onclick="history.go(1)"> 後一頁</font>
<font
onclick="history.go(2)"> 後兩頁</font>
<font
onclick="history.go(3)"> 後三頁</font>
也可設定退後、前進多步

(八)、滑鼠事件
<A HREF="MAILTO:webmaster@jzzy.com"
onmouseover="alert("給我寫信"); return true">信箱</A>
滑鼠放上去顯示警告資訊

(九)、獲得瀏覽器的屬性

navigator.appCodename=undefinednavigator.appName=Microsoft Internet
Explorernavigator.appVersion=4.0 (compatible; MSIE 5.0; Windows 98;
DigExt)navigator.appAgent=undefined
(十)、列印整個頁面
<font
onClick="javascript:window.print()">列印本頁</font>
(十一)、查看源碼
<input
TYPE="button" NAME="view" value="查看本頁的源碼"
onClick="window.location="view-source:" +window.location.href"
class="pt9">
(十二)、重新整理頁面
<font
onClick="history.go(0)">重新整理本頁</font>
(十三)、背景色變換
<input
TYPE="button" value="背景色變換" onClick="BgButton()">
<script>function
BgButton()
{
if (document.bgColor=='#00ffff')

{
document.bgColor='#ffffff';
}
else{document.bgColor='#00ffff';
}
}
</script>
(十四)、Title上顯示資訊
<script
language="javascript1.2">
<!--hide
document.title="今天是星期天"
//--hide-->
</script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.