0

jquery ポップアップ スクリプト OO スタイルを作成しようとしています。私がこれを行っているのは、このコードを見落としなく jquery/javascript で拡張したいからです。私が受け取っているエラーはObject #<HTMLDivElement> has no method 'centerPopup'Resource interpreted as Script but transferred with MIME type text/x-c: OO JavaScript は初めてですが、OO PHP の経験は豊富です。

function popup(){

    var popupStatus = 0;

    $(document).ready(function () {
        $("#button").click(function()
        {
            this.centerPopup();
            this.loadPopup();
        });

        $("#backgroundPopup").click(function()
        {
            this.disablePopup();
        });

        $(document).keypress(function(e)
        {
            if(e.keyCode==27 && popupStatus==1)
            {
                this.disablePopup();
            }
        });

    });

      this.loadPopup = function (){
        if(this.popupStatus==0)
        {
            $("#backgroundPopup").css(
            {
                "opacity": "0.7"
            });
            $("#backgroundPopup").fadeIn("slow");
            $("#popupContact").fadeIn("slow");

        this.popupStatus = 1;
        }
    }

    this.disablePopup = function (){
        if(this.popupStatus==1)
        {
            $("#backgroundPopup").fadeOut("slow");
            $("#popupContact").fadeOut("slow");
            this.popupStatus = 0;
        }
    }

    this.centerPopup = function (){
        var windowWidth = document.documentElement.clientWidth;
        var windowHeight = document.documentElement.clientHeight;
        var popupHeight = $("#popupContact").height();
        var popupWidth = $("#popupContact").width();

        $("#popupContact").css(
        {
            "position": "absolute",
            "top": windowHeight/2-popupHeight/2,
            "left": windowWidth/2-popupWidth/2
        });

        $("#backgroundPopup").css(
        {
            "height": windowHeight
        });
    }
}

var popup = new popup()


<!DOCTYPE HTML>

<html>
<head>
<link rel="stylesheet" href="css/popup.css" type="text/css" media="screen" />
<script src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js" type="text/javascript"></script>
<script src="js/popup2.js" type="text/javascript"></script>
</head>
<body>

    <center>
        <div id="button"><input type="submit" value="Popup!" /></div>
    </center>

    <div id="popupContact">
        <a id="popupContactClose">x</a>
    </div>

    <div id="backgroundPopup"></div>

</body>
</html>
4

1 に答える 1

2
 $("#button").click(function()
        {
            this.centerPopup();
            this.loadPopup();
        });

thisあなたが実際に考えていることではありません。のインスタンスでpopupはなく、DOM 要素 ( #button) です。クラスの先頭でインスタンスに参照を保存することで、これを修正できます。

function popup(){
    var self = this;
    this.popupStatus = 0; // you should use `this` here

    $(document).ready(function () {
        $("#button").click(function()
        {
            self.centerPopup();
            self.loadPopup();
        });
/* ... snip ... */
于 2013-04-07T19:30:58.947 に答える