Jquery禁用以前的功能

时间:2014-05-09 02:24:01

标签: javascript jquery

$(document).on('touchstart click', function (){
        $('#box').hide();
});

if(isset($_GET['s'])){include(//another page);}

另一个页面会停用文档点击$('#box').hide();

我有一个页面,如果获得变量isset,它将包含另一个页面。

但是我需要禁用文件点击隐藏div功能

任何人都知道如何实现这一目标?

1 个答案:

答案 0 :(得分:2)

如果我理解你的问题,这可能会有效:

myvar = 0;

$(document).on('touchstart click', function (){
        if(myvar==0){
            $('#box').hide();
        }
});

if(isset($_GET['s'])){
    include(//another page);
    myvar = 1;
}