0

我创建了具有成员 x 和 y 的对象类型 a,还有一些更改成员值的函数。我已经看到调试器中的成员发生了变化。但是没有一个成员改变。你可以解释吗?x 和 y 的行为有什么不同吗?一个是局部变量,另一个是参数。

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
    <div id="debug"></div>
    <script src="Scripts/jquery-2.0.0.min.js"></script>
    <script>
        function a(y) {
            var x = 0;
            return {
                x: x,
                y: y,
                getX: getX,
                getY: getY,
                processX: processX,
                processY: processY,
            }
            function getX() {
                return x;
            }
            function getY() {
                return y;
            }
            function processX() {
                this.x = 1;
            }
            function processY() {
                this.y = 100;
            }
        }
        $(function () {
            var objs = [];
            for (var i = 0; i < 3; i++) {
                objs[i] = a(i);
            }
            objs[0].processX();
            objs[1].processY();
            objs.forEach(function (o) {
                $("#debug").append($("<p>").text(o.x + " " + o.y));
                $("#debug").append($("<p>").text(o.getX() + " " + o.getY()));
//result:
//1 0
//0 0
//0 100
//0 1
//0 2
//0 2
            });
        });
    </script>
</body>
</html>

奇怪的是,如果我编写一个函数来访问成员,就可以获得正确的值。为什么???

4

1 回答 1

4

this当您想修改对象属性时,您必须明确涉及:

        function getX() {
            return this.x;
        }
        function getY() {
            return this.y;
        }
        function processX() {
            this.x = 1;
        }
        function processY() {
            this.y = 100;
        }

在您的原始代码中,这四个函数中对“x”和“y”的引用将被解析为外部函数(称为“a”的函数)中的局部变量“x”和“y”。该“a”函数包括一个名为“y”的参数和一个var“x”的声明。

于 2013-04-25T15:10:59.677 回答