首 页 教育新闻课件中心论文中心教学教案试题中心语文专题综合下载技术教程公务员  
设为首页
加入收藏
联系我们
您当前的位置:中国教育资源网 -> 技术教程 -> 网络相关 -> 服务器 -> Web服务器 -> 技术内容 退出登录 用户管理

实现Web页面上的右键快捷菜单Web服务器教程

论文作者:佚名  论文来源:不详  论文发布时间:2006-6-18 22:39:54  论文发布人:chjchjchj

减小字体 增大字体

              摘要:实现Web页面上的右键快捷菜单

实现Web页面上的右键快捷菜单

样式代码:

<style type="text/css">
   body{font: 9pt "宋体"; margintop: 0px ; color: red; background: #ffffff}
   a.{ font: 9pt "宋体"; cursor: hand; font-size: 9pt ; color: blue; text-decoration: none }
   a:active{ font: 9pt "宋体"; cursor: hand; color: #FF0033 }
   a.cc:hover{ font: 9pt "宋体"; cursor: hand; color: #FF0033}
   .box{ font: 9pt "宋体"; position: absolute; background: LightGrey; }
  </style>

html代码如下:

  <table id="itemopen" class="box" style="DISPLAY:none">
   <tr>
    <td>弹出菜单</td>
   </tr>
   <tr>
    <td><a href="http://blog.csdn.net/Erickson/" class="cc">Erickson的专栏</a></td>
   </tr>
   <tr>
    <td><a href="http://www.csdn.net" class="cc">CSDN</a></td>
   </tr>
   <tr>
    <td><a href="http://www.google.com" class="cc">Google 搜索</a></td>
   </tr>
   <tr>
    <td><a href="http://www.sohu.com" class="cc">搜狐</a></td>
   </tr>
   <tr>
    <td><a href="http://www.yahoo.com" class="cc">Yahoo</a></td>
   </tr>
   <tr>
    <td><a href="http://www.163.com" class="cc">163 网站</a></td>
   </tr>
   <tr>
    <td><a href="http://sports.sina.com.cn" class="cc">新浪网体育</a></td>
   </tr>
   </table>

脚本代码:

右击鼠标显示快捷菜单:
  <script language="JavaScript">
   document.onmousedown = function popUp() {
    menu = document.all.itemopen
    if (event.button == 2) {
    newX = window.event.x + document.body.scrollLeft
    newY = window.event.y + document.body.scrollTop
    menu.style.display = ""
    menu.style.pixelLeft = newX
    menu.style.pixelTop = newY
    }
    else if (event.button == 1)
    {
     menu.style.display = "none"
    }
   }
  </script>

屏蔽IE默认的WinForm快捷菜单:
  <script language="JavaScript">
   var message="";
   function clickIE()
   {
    if (document.all)
    {
     (message);
     return false;
    }
   }
   function clickNS(e)
   {
    if (document.layers||(document.getElementById&&!document.all))
    {
     if (e.which==2)
     {
      newX = window.event.x + document.body.scrollLeft
      newY = window.event.y + document.body.scrollTop
      menu = document.all.itemopen
      if ( menu.style.display == "")
      {
       menu.style.display = "none"
      }
      else
      {
       menu.style.display = ""
      }
      menu.style.pixelLeft = newX
      menu.style.pixelTop = newY
     }
     if (e.which==3)
     {
      (message);
      return false;
     }
    }
   }
   if (document.layers)
   {
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS;
   }
   else
   {
    document.onmouseup=clickNS;document.oncontextmenu=clickIE;
   }
   document.oncontextmenu=new Function("return false")
  </script>

菜单效果如下:

[] [返回上一页] [打 印] [收 藏]  
 ∷相关技术评论  (评论内容只代表网友观点,与本站立场无关!) [查看发表评论...]
 
 中国教育资源网免费技术教程下载中心-站内广告 站内广告 中国教育资源网免费技术教程下载中心-站内广告 
 中国教育资源网站内搜索 站内搜索 中国教育资源网站内搜索 
 

   
 中国教育资源网免费技术教程下载中心-栏目导航 栏目导航 中国教育资源网免费技术教程下载中心-栏目导航 
· Windows 9XMEXP · Windows NT20002003
· LinuxBSD · 系统综合
· IISApache · 硬件技术
· Web服务器 · FTP服务器
· 邮件服务器 · 域名服务器
· Windows服务器 · 代理服务器
· 服务器综合
 
中国教育资源网免费技术教程下载中心-相关教程  相关技术 中国教育资源网免费技术教程下载中心-相关教程
· 实现Web页面内容动态
· Apache+Tomcat实现W
· Apache+Tomcat实现W
· 通过内核httpd实现w
· Apache+Tomcat实现W
· 通过内核httpd实现w
· 实现Web中的@虚拟域
· 通过内核httpd实现w
· 实现Web中的@虚拟域
· 通过内核httpd实现w
 中国教育资源网免费技术教程下载中心-本月热门教程 本月热门 中国教育资源网免费技术教程下载中心-本月热门教程 
 
 中国教育资源网免费技术教程下载中心-本日热门论文 本日热门 中国教育资源网免费技术教程下载中心-本日热门论文 
 
关于本站 - 网站帮助 - 免费课件 - 美容 - 绿色软件 - 软件下载 - 广告合作 - 下载声明 - 友情连接 - 网站地图 - 网站留言
浙ICP备06010405号 Email:cnkjz@163.com 技术支持:名流设计
版权所有 Copyright© 2002-2004 名流