美文网首页
jQuery点击div以外的地方关闭

jQuery点击div以外的地方关闭

作者: 白衣诗人 | 来源:发表于2019-01-15 10:52 被阅读0次
/**
 * 点击本身之外的东西关闭弹框,点击本身以内的则不关闭弹框
 * @param obj 本身索引
 * @param ifarem 弹框索引
* @param 点击按钮关闭弹框,按钮的索引
 */
function fExcept(obj,ifarem,del) {
    $(ifarem).on('click',function(e){
        if ($(e.target).parents(obj).length < 1) {
            $(ifarem).hide();
        }
    });
    $(del).on("click",function () {
        $(ifarem).hide();

    });

}

相关文章

网友评论

      本文标题:jQuery点击div以外的地方关闭

      本文链接:https://www.haomeiwen.com/subject/ddvedqtx.html