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

js开关true||false

时间:2015-08-04 15:33:50      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

想禁止掉页面的其它click事件,用true||false就可以避免去取消事件的绑定

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<script type="text/javascript" src="jquery-1.11.2.min.js"></script>
<style>
section{overflow:hidden;}
input,font,span{width:100px;height: 30px;display:block;background:red;margin:0 10px;float:left;text-align: center;line-height: 30px;font-weight:bold;}
div{width:360px;height:300px;background:#000;overflow:hidden;display: none;}
</style>
</head>
<body>
<section>
    <input type="button" value="input"/>
    <font>font</font>
    <span>span</span>
</section>


<div>div</div>




<script>
    $(function() {
        var flag=true;
        $("input").bind("click", function() {
            flag=false;
            $("div").show(function() {
                $(this).click(function() {
                    $(this).hide();
                    flag = true;
                })
            });
        });
        $("font").bind("click", function() {
            if (flag) {
                alert("font");
            }
        });

        $("span").bind("click", function() {
            if (flag) {
                alert("span");
            }
        });
    });
</script>


</body>
</html>

 

js开关true||false

标签:

原文地址:http://www.cnblogs.com/yanwen2015/p/4701922.html

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