毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> WEB开发 >> 正文

jquery怎样固定位置

更新时间:2013-4-6:  来源:毕业论文

jquery怎样固定位置
鼠标移上去,下面加个框多出来,鼠标移开这个div框又缩回去,我现在实现了,可是鼠标移上去弹出来了,下面的元素位置也下移了,怎样实现在下面的元素位置不动,仅仅是覆盖

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="jquery.js"></script> <title>无标题文档</title> <script type="text/javascript">     $(function(){         $("#div1").mouseover(function(){             $("#div2").css({display:'inline',                             position:'absolute',                             "z-index":20,                             background:'red'});         }).mouseout(function(){             $("#div2").hide();         })     }) </script> </head> <body>     <div id="div1">divfdsfdsafdsa</div>     <div id="div2" style="display:none;z-index:20">div22</div>     <div id="div3">div</div> </body> </html>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> new document </title> <style type="text/css"> .button {     position: relative;     width: 100px; height: 20px;     border: #7a340a 1px solid;     background-color: #f7dfbb; } .menu {     position: absolute;     top: 21px; left: -1px;     width: 100px; height: 120px;     border: #ff3300 1px solid;     background-color: #ffcc33;     display:none; } .button:hover .menu {     display:block; } </style> </head>   <body> <div class="button"> xxxxxxxxxxxx <div class="menu"> aaaaaaaaaaaa<br /> aaaaaaaaaaaa<br /> aaaaaaaaaaaa<br /> aaaaaaaaaaaa<br /> aaaaaaaaaaaa<br /> </div> </div> dddddddddddd<br /> dddddddddddd<br /> dddddddddddd<br /> dddddddddddd<br /> dddddddddddd<br /> dddddddddddd<br /> dddddddddddd<br /> dddddddddddd<br /> dddddddddddd<br /> </body> </html>

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。