jQuery div以外をクリックして閉じる

393 ワード

/**
 *              ,             
 * @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();

    });

}