码迷,mamicode.com
首页 > Web开发 > 详细

jquery弹出框

时间:2018-05-07 22:54:48      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:off   ali   border   display   取消   one   空白区域   target   mat   

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4.     <title>jQuery - Start Animation</title>  
  5.   
  6.     <script type="text/javascript" src="../scripts/jquery-1.3.2-vsdoc2.js" ></script>  
  7.   
  8.     <script type="text/javascript">  
  9.         $(document).ready(function()  
  10.         {  
  11.             //动画速度  
  12.             var speed = 500;  
  13.   
  14.             //绑定事件处理  
  15.             $("#btnShow").click(function(event)  
  16.             {  
  17.                 //取消事件冒泡  
  18.                 event.stopPropagation();  
  19.                 //设置弹出层位置  
  20.                 var offset = $(event.target).offset();  
  21.                 $("#divPop").css({ top: offset.top + $(event.target).height() + "px", left: offset.left });  
  22.                 //动画显示  
  23.                 $("#divPop").show(speed);  
  24.   
  25.             });  
  26.             //单击空白区域隐藏弹出层  
  27.             $(document).click(function(event) { $("#divPop").hide(speed) });  
  28.             //单击弹出层则自身隐藏  
  29.             $("#divPop").click(function(event) { $("#divPop").hide(speed) });  
  30.         });  
  31.     </script>  
  32.   
  33. </head>  
  34. <body>  
  35.     <div>  
  36.         <br /><br /><br />  
  37.         <button id="btnShow">显示提示文字</button>  
  38.     </div>  
  39.           
  40.     <!-- 弹出层 -->  
  41.     <div id="divPop" style="background-color: #f0f0f0; border: solid 1px #000000; position: absolute; display:none;  
  42.         width: 300px; height: 100px;">  
  43.         <div style="text-align: center;" >弹出层</div>  
  44.     </div>  
  45. </body>  
  46. </html>  

jquery弹出框

标签:off   ali   border   display   取消   one   空白区域   target   mat   

原文地址:https://www.cnblogs.com/loveAline/p/9005192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!