如何优化这个弹出扩展jquery代码

发布于 2024-11-28 02:47:58 字数 5258 浏览 0 评论 0原文

我下面有这段代码 - 我想也许有一种方法可以使它更简洁?我不是专家程序员,因此感谢任何帮助和指示。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
        <title></title> 
        <meta http-equiv="content-type" content="text/html; charset=utf-8"/>     
        <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script> 
</head> 
<script type="text/javascript"> 
        $(document).ready(function() {
            ph      =   $('#popup').height();
            ot      =   $('#launcher').offset().top;
            ats     =   function(){return ot - $(document).scrollTop();}
            abs     =   function(){return ($(document).scrollTop() + $(window).height() ) - ot;}
            popPos  =   function(){
                            var ret = {};
                            if (abs() <= ph) {
                                ret.top = ( ot - ( ph - $('#launcher').height() ) )
                            } 
                            else {
                                ret.top = ot
                            }
                            ret.left = $('#launcher').offset().left;
                            return ret;
                        }
            showPop =   function(){
                            $('#popup')
                                .css(
                                    {
                                        'top'   :   popPos().top    + 'px',
                                        'left'  :   popPos().left   + 'px'
                                    }
                                )
                                .show()
                            ;
                        }

            $('body')
                .click(
                    function(event){
                        if(event.target.id != 'launcher' ){
                            $('#popup')
                                .hide()
                            ;
                        }
                        else {
                            if( $('#popup').is(':visible') ){
                                $('#popup')
                                    .hide()
                                ;
                            }
                            else {
                                showPop();
                            }
                            window.getSelection().empty();
                        }
                    }
                )
            ;
        }); 

</script> 
<style type="text/css"> 
html, body, #container {
    margin          :   0px;
    padding         :   0px;
    border          :   0px;
    width           :   100%;
    height          :   100%;
}
.scroll {
    margin          :   auto;
    overflow-y      :   auto;
    overflow-x      :   hidden;
}
.font {
    size            :   12px;
    line-height     :   14px;
    color           :   #000;
    text-align      :   left;
    font-family     :   'Arial', '_sans';
}
#launcher {
    border          :   1px solid #999;
    width           :   400px;
}
#popup {
    position        :   absolute;
    z-index         :   2;
    width           :   200px;
    height          :   300px;
    border          :   1px solid #900;
    padding         :   0px;
    margin          :   0px;
    background      :   #efefef;
    display         :   none;
}
</style> 
<body> 
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
<div id="launcher" class="x" style="margin-left:76px;">
    launch
</div> 
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
 <div id="popup" class="x">
    popup
</div> 

</body> 
</html>

I have this code below - and am thinking maybe there is a way to make it more concise? I'm not an expert programmer so any help and pointers are appreciated.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
        <title></title> 
        <meta http-equiv="content-type" content="text/html; charset=utf-8"/>     
        <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script> 
</head> 
<script type="text/javascript"> 
        $(document).ready(function() {
            ph      =   $('#popup').height();
            ot      =   $('#launcher').offset().top;
            ats     =   function(){return ot - $(document).scrollTop();}
            abs     =   function(){return ($(document).scrollTop() + $(window).height() ) - ot;}
            popPos  =   function(){
                            var ret = {};
                            if (abs() <= ph) {
                                ret.top = ( ot - ( ph - $('#launcher').height() ) )
                            } 
                            else {
                                ret.top = ot
                            }
                            ret.left = $('#launcher').offset().left;
                            return ret;
                        }
            showPop =   function(){
                            $('#popup')
                                .css(
                                    {
                                        'top'   :   popPos().top    + 'px',
                                        'left'  :   popPos().left   + 'px'
                                    }
                                )
                                .show()
                            ;
                        }

            $('body')
                .click(
                    function(event){
                        if(event.target.id != 'launcher' ){
                            $('#popup')
                                .hide()
                            ;
                        }
                        else {
                            if( $('#popup').is(':visible') ){
                                $('#popup')
                                    .hide()
                                ;
                            }
                            else {
                                showPop();
                            }
                            window.getSelection().empty();
                        }
                    }
                )
            ;
        }); 

</script> 
<style type="text/css"> 
html, body, #container {
    margin          :   0px;
    padding         :   0px;
    border          :   0px;
    width           :   100%;
    height          :   100%;
}
.scroll {
    margin          :   auto;
    overflow-y      :   auto;
    overflow-x      :   hidden;
}
.font {
    size            :   12px;
    line-height     :   14px;
    color           :   #000;
    text-align      :   left;
    font-family     :   'Arial', '_sans';
}
#launcher {
    border          :   1px solid #999;
    width           :   400px;
}
#popup {
    position        :   absolute;
    z-index         :   2;
    width           :   200px;
    height          :   300px;
    border          :   1px solid #900;
    padding         :   0px;
    margin          :   0px;
    background      :   #efefef;
    display         :   none;
}
</style> 
<body> 
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
<div id="launcher" class="x" style="margin-left:76px;">
    launch
</div> 
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
dfg<br/><br/><br/><br/>dfg<br/><br/>dfg<br/><br/>
 <div id="popup" class="x">
    popup
</div> 

</body> 
</html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仅一夜美梦 2024-12-05 02:47:58

清理代码的工作示例:

http://jsfiddle.net/mLPfd/

Working example of cleaned up code:

http://jsfiddle.net/mLPfd/

救星 2024-12-05 02:47:58

我的建议是在弹出窗口后面使用半透明层。这样,您可以在用户单击图层时关闭弹出窗口,而不是每次单击 body 时都进行检查。其他一些明显的优势是:

在此处输入图像描述

在此处查看演示:http://flowplayer.org/tools/demos/overlay/modal-dialog.html

  1. 您确保确定无法点击在其他地方弹出窗口处于活动状态
  2. 它看起来不错并且将用户的注意力集中在弹出窗口中

另请注意,这个问题可能更适合:codereview.stackexchange.com

My tip is use a semi transparent layer behind the popup. That way you can close the popup when the user clicks on the layer instead of checking every time there is a click in the body. Some other clear advantages are:

enter image description here

See demo here: http://flowplayer.org/tools/demos/overlay/modal-dialog.html

  1. You make sure the sure cant click somewhere else while the popup is active
  2. It looks good and centers the user attention in the popup

Also note that this question maybe more suited to: codereview.stackexchange.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文