分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 教程案例

js 共有属性私有属性

发布时间:2023-09-06 01:42责任编辑:郭大石关键词:js
 1 <!DOCTYPE html> 2 <html> 3 <head lang="en"> 4 ????<meta charset="UTF-8"> 5 ????<title></title> 6 </head> 7 <body> 8 ?9 </body>10 </html>11 <script>12 ????//对象构造函数13 ????// 私有属性好处: 安全 就类似闭包中的函数一样 减少污染14 ????function Person(name) {15 ????????//私有属性,只能在对象构造函数内部使用 16 ????????var className = "用户对象";17 ????????//公有属性,在对象实例化后调用 18 ????????this.name = name;19 ????????//私有方法20 ????????var privateFunction = function () {21 ????????????alert(this.name);22 ????????}23 ????????//公有方法24 ????????this.publicFunction = function () {25 ????????????alert(this.name); //公有属性 26 ????????????alert(className); //正确 直接通过变量名访问 27 ????????????alert(this.className); //undefined 错误 不能这样访问 28 ????????}29 ????????//公有属性30 ????????alert(className);31 ????????//正确 直接通过变量名访问32 ????????alert(this.className); //undefined 错误 不能这样访问 33 ????}34 35 ????/*什么是公有属性:*/36 ????/*使用象的人可以访问到对象内部的某个属性*/37 ????var person = new Person(‘xiaowang‘)38 39 ????console.log(person.className);40 ????console.log(person.name)41 ????console.log(person.publicFunction())42 ????console.log(person.privateFunction())43 44 </script>

js 共有属性私有属性

原文地址:https://www.cnblogs.com/sanerandm/p/8448268.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved