日韩黑丝制服一区视频播放|日韩欧美人妻丝袜视频在线观看|九九影院一级蜜桃|亚洲中文在线导航|青草草视频在线观看|婷婷五月色伊人网站|日本一区二区在线|国产AV一二三四区毛片|正在播放久草视频|亚洲色图精品一区

分享

Javascript實現(xiàn)瀏覽器菜單命令

 suncly 2006-08-09

每當我們看到別人網(wǎng)頁上的打開、打印、前進、另存為、后退、關閉本窗口、禁用右鍵等實現(xiàn)瀏覽器命令的鏈接,而自己苦于不能實現(xiàn)時,是不是感到很遺憾?是不是也想實現(xiàn)?如果能在網(wǎng)頁上能實現(xiàn)瀏覽器的命令,將是多么有意思的事?。∠旅嫖覀兙蛠砜纯慈绾斡肑avascript代碼實現(xiàn)瀏覽器菜單命令(以下代碼在Windows XP下的瀏覽器中調試通過)。

  一、【文件(F)】菜單中的命令的實現(xiàn)
  1、〖打開〗命令的實現(xiàn)
  [格式]:document.execCommand("open")
  [說明]這跟VB等編程設計中的webbrowser控件中的命令有些相似,大家也可依此琢磨琢磨。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=document.execCommand("open")>打開</a>
  2、〖使用 記事本 編輯〗命令的實現(xiàn) 
  [格式]:location.replace("view-source:"+location)
  [說明]打開記事本,在記事本中顯示該網(wǎng)頁的源代碼。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=location.replace("view-source:"+location)>使用 記事本 編輯</a>
  3、〖另存為〗命令的實現(xiàn) 
  [格式]:document.execCommand("saveAs")
  [說明]將該網(wǎng)頁保存到本地盤的其它目錄!
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=document.execCommand("saveAs")>另存為</a>
  4、〖打印〗命令的實現(xiàn) 
  [格式]:document.execCommand("print")
  [說明]當然,你必須裝了打印機!
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=document.execCommand("print")>打印</a>
  5、〖關閉〗命令的實現(xiàn)
  [格式]:window.close();return false
  [說明]將關閉本窗口。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=window.close();return false)>關閉本窗口</a>

  二、【編輯(E)】菜單中的命令的實現(xiàn)
  〖全選〗命令的實現(xiàn) 
  [格式]:document.execCommand("selectAll")
  [說明]將選種網(wǎng)頁中的全部內容!
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=document.execCommand("selectAll")>全選</a>

  三、【查看(V)】菜單中的命令的實現(xiàn)
  1、〖刷新〗命令的實現(xiàn)
  [格式]:location.reload() 或 history.go(0)
  [說明]瀏覽器重新打開本頁。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=location.reload()>刷新</a>
  或加入:<a href="show.asp_id=864#" onclick=history.go(0)>刷新</a> 
  2、〖源文件〗命令的實現(xiàn) 
  [格式]:location.replace("view-source:"+location)
  [說明]查看該網(wǎng)頁的源代碼。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=location.replace("view-source:"+location)>查看源文件</a>
  3、〖全屏顯示〗命令的實現(xiàn) 
  [格式]:window.open(document.location,"url","fullscreen")
  [說明]全屏顯示本頁。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=window.open(document.location,"url","fullscreen")>全屏顯示</a>

  四、【收藏(A)】菜單中的命令的實現(xiàn)
  1、〖添加到收藏夾〗命令的實現(xiàn) 
  [格式]:window.external.AddFavorite(’url’, ’“網(wǎng)站名”)
  [說明]將本頁添加到收藏夾。
  [舉例]在<body></body>之間加入:
  <a href="javascript_window.external.AddFavorite(’http://oh.’, ’胡明新的個人主頁’)">添加到收藏夾</a> 
  2、〖整理收藏夾〗命令的實現(xiàn) 
  [格式]:window.external.showBrowserUI("OrganizeFavorites",null)
  [說明]打開整理收藏夾對話框。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=window.external.showBrowserUI("OrganizeFavorites",null)>整理收藏夾</a> 

  五、【工具(T)】菜單中的命令的實現(xiàn)
  〖internet選項〗命令的實現(xiàn) 
  [格式]:window.external.showBrowserUI("PrivacySettings",null)
  [說明]打開internet選項對話框。
  [舉例]在<body></body>之間加入:   [轉自:51item.net] 
  <a href="show.asp_id=864#" onclick=window.external.showBrowserUI("PrivacySettings",null)>internet選項</a> 

  六、【工具欄】中的命令的實現(xiàn)
  1、〖前進〗命令的實現(xiàn) 
  [格式]history.go(1) 或 history.forward()
  [說明]瀏覽器打開后一個頁面。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=history.go(1)>前進</a>
  或加入:<a href="show.asp_id=864#" onclick=history.forward()>前進</a>
  2、〖后退〗命令的實現(xiàn) 
  [格式]:history.go(-1) 或 history.back()
  [說明]瀏覽器返回上一個已瀏覽的頁面。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=history.go(-1)>后退</a>
  或加入:<a href="show.asp_id=864#" onclick=history.back()>后退</a>
  3、〖刷新〗命令的實現(xiàn) 
  [格式]:document.reload() 或 history.go(0)
  [說明]瀏覽器重新打開本頁。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=location.reload()>刷新</a>
  或加入:<a href="show.asp_id=864#" onclick=history.go(0)>刷新</a> 
  
  七、其它命令的實現(xiàn) 
  〖定時關閉本窗口〗命令的實現(xiàn) 
  [格式]:settimeout(window.close(),關閉的時間)
  [說明]將關閉本窗口。
  [舉例]在<body></body>之間加入:
  <a href="show.asp_id=864#" onclick=settimeout(window.close(),3000)>3秒關閉本窗口</a>

  如果大家還整理出其他用Javascript實現(xiàn)的命令,不妨投稿來和大家分享。
  【附】為了方便讀者,下面將列出所有實例代碼,你可以把它們放到一個html文件中,然后預覽效果。
  <a href="show.asp_id=864#" onclick=document.execCommand("open")>打開</a><br>
  <a href="show.asp_id=864#" onclick=location.replace("view-source:"+location)>使用 記事本 編輯</a><br>
  <a href="show.asp_id=864#" onclick=document.execCommand("saveAs")>另存為</a><br>
  <a href="show.asp_id=864#" onclick=document.execCommand("print")>打印</a><br>
  <a href="show.asp_id=864#" onclick=window.close();return false)>關閉本窗口</a><br>
  <a href="show.asp_id=864#" onclick=document.execCommand("selectAll")>全選</a><br>
  <a href="show.asp_id=864#" onclick=location.reload()>刷新</a> <a href="show.asp_id=864#" onclick=history.go(0)>刷新</a><br> 
  <a href="show.asp_id=864#" onclick=location.replace("view-source:"+location)>查看源文件</a> <br>
  <a href="show.asp_id=864#" onclick=window.open(document.location,"url","fullscreen")>全屏顯示</a> <br> 
  <a href="javascript_window.external.AddFavorite(’http://homepage.yesky.com’, ’天極網(wǎng)頁陶吧’)">添加到收藏夾</a> <br>
  <a href="show.asp_id=864#" onclick=window.external.showBrowserUI("OrganizeFavorites",null)>整理收藏夾</a> <br>
  <a href="show.asp_id=864#" onclick=window.external.showBrowserUI("PrivacySettings",null)>internet選項</a> <br>
  <a href="show.asp_id=864#" onclick=history.go(1)>前進1</a> <a href="show.asp_id=864#" onclick=history.forward()>前進2</a><br>
  <a href="show.asp_id=864#" onclick=history.go(-1)>后退1</a> <a href="show.asp_id=864#" onclick=history.back()>后退2</a><br>
  <a href="show.asp_id=864#" onclick=settimeout(window.close(),3000)>3秒關閉本窗口</a><br>

    本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內容均由用戶發(fā)布,不代表本站觀點。請注意甄別內容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權內容,請點擊一鍵舉報。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多