作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Possible Duplicate:
Javascript: Do I need to put this.var for every variable in an object?
我想在 JavaScript 中创建一个“类”,其他“类”应该继承该“类”。
因此,我使用原型(prototype)对象添加了“公共(public)方法”。
在这些方法中,我想访问我的类的私有(private)属性。
我似乎无法访问它们。我该怎么做呢?这是我的代码:
<!doctype html>
<html>
<head>
<title>OOP test</title>
<script>
var ParentClass = function(){
var data = [];
}
ParentClass.prototype.addData = function(somedata){
data.push(somedata); // ReferenceError: Can't find variable: data
}
var p = new ParentClass();
p.addData("foo");
</script>
</head>
<body>
</body>
</html>
最佳答案
<head>
<title>OOP test</title>
<script>
var ParentClass = function(){
this.data = [];
}
ParentClass.prototype.addData = function(somedata){
this.data.push(somedata); // ReferenceError: Can't find variable: data
}
var p = new ParentClass();
p.addData("foo");
</script>
</head>
<body>
</body>
关于javascript - 如何从 JavaScript 的公共(public)方法中访问私有(private)属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13514840/
我是一名优秀的程序员,十分优秀!