페이지의 다른 곳을 클릭하여 DIV를 숨깁니다 (자주 사용)


<html lang="en">

    <head>
        <meta charset="UTF-8" />
        <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js">script>
        <title>Documenttitle>
        <script type="text/javascript">
            $(function() {
                        function stopFunc(e) {
                            e.stopPropagation ? e.stopPropagation() : e.cancelBubble = true;
                        }
                        document.onclick = function(e) {
                            $(".options").css('display', 'none');
                        }
                        $(".more").click(function(e) {
                            $(".options").css('display', 'block');
                            e = e || event;
                            stopFunc(e);
                        })
                        $(".options").click(function(e) {
                            e = e || event;
                            stopFunc(e);
                        })
                })
        script>
        <style type="text/css">
            .more {
                text-decoration: none;
            }

            .options {
                position: absolute;
                display: none;
                left: 10px;
                top: 46px;
                background: #fff;
                width: 128px;
                border: red solid 1px;
                box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
            }

            .options a {
                display: block;
                line-height: 24px;
                height: 24px;
                padding-left: 10px;
                color: #666;
                text-decoration: none;
            }
            .options a:hover {
                background: red;
            }
        style>
    head>

    <body>
        <div id="main" style="position: relative;">
            <a href="javascript:void(0)" target="_blank" class="more">  a>
            <div class="options">
                <a href="/ar">العربيةa>
                <a href="/de">Deutscha>
                <a href="/es">Española>
                <a href="/fa">فارسیa>
                <a href="/fr">Françaisa>
                <a href="/he">עבריתa>
                <a href="/hi">हिन्दीa>
                <a href="/it">Italianoa>
                <a href="/ja">   a>
                <a href="/nl">Nederlandsa>
                <a href="/pl">Polskia>
                <a href="/pt">Portuguêsa>
                <a href="/ro">Românăa>
                <a href="/ru">Русскийa>
                <a href="/th">ภาษาไทยa>
                <a href="/tr">Türkçea>
                <a href="/zh">    a>
                <a href="/en">Englisha>
            div>
        div>

    body>

html>

좋은 웹페이지 즐겨찾기