JQuery 鼠标点击其它地方隐藏层

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
{ 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").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"){
                   $(
".div").css("display","block")
               }
else{
                   $(
".div").css("display","none");
               }
           }
         }
    })
</script>
</head>
<body style=" padding-left:300px;">
    <input id="search" />
    <div class="div">  
        <href="#" target="_blank">打开我的链接</a>
    </div>
</body>
</html>
原文地址:https://www.cnblogs.com/jsonzheng/p/2253134.html