zoukankan      html  css  js  c++  java
  • 关于鼠标点击其他地方隐藏层的实例(要引入jquery包哦)

    <!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" />
    <title>test</title>
    <style  type="text/css">
    .div_d{ padding:10px; border:1px dotted red; position:absolute; display:none; cursor:pointer;}
    </style>
    <script src="jquery-1.2.6.min.js"></script>
    <script type="text/javascript">
    $(function(){
               $("input[id=search]").focus(function(even){                                               
                                         var pos=$(this).offset();
                                       
                                         $(".div_d").css({left:pos.left,top:pos.top+20+"px",display:"block"});
                                         });
                document.onclick=function(e){
         
                       var e=e?e:window.event;
                       var tar = e.srcElement||e.target;
                       if(tar.id!="search"){
                           if($(tar).attr("class")=="div_d"){
                               $(".div_d").css("display","block")
                           }else{
                               $(".div_d").css("display","none");
                           }
                       }
                     }
               })

    </script>
    </head>

    <body style=" padding-left:300px;">
    <input id="search" />
    <div class="div_d">  <a href="http://www.baidu.com" target="_blank">ldksjfla</a>;sdflaks;djf;lkasdjfl;kja;lsdk</div>
    </body>
    </html>

  • 相关阅读:
    如何导出API文档,没有你做不到,只有你想不到!
    Oracle 数据库数据排名函数:rank() 和dense_rank() 。
    第二次绩效评估
    检查博客
    “E记”Alpha版使用说明
    绩效评估
    第一个冲刺周期意见评论
    第一个冲刺周期意见汇总
    第一次冲刺会议评审总结
    软件工程概论第一个冲刺周期
  • 原文地址:https://www.cnblogs.com/EWall/p/1942564.html
Copyright © 2011-2022 走看看