zoukankan
html css js c++ java
Js对象继承
1.对象冒充
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Document</title> </head> <body> <script type="text/javascript"> function Person(personName){ this.name = personName; this.sayName = function(){ alert('my name is ' + this.name); } } function Man(name, age){ //Person.call(this, name); Person.apply(this,new Array(name)); this.age = age; this.sayAge = function(){ alert('my age is ' + this.age); } } var m = new Man('jikey', 'tom', 29); m.sayName(); m.sayAge(); </script> </body> </html>
运行代码
2.混合方式
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Document</title> <style> </style> <script> function Person(name){ this.name = name; } Person.prototype.sayName = function(){ alert('My name is ' + this.name);} function Man(name, age){ Person.call(this, name); this.age = age; } Man.prototype = new Person(); Man.prototype.sayAge = function(){ alert('My age is ' + this.age);} var tom = new Man('tom', 29); var jikey = new Man('jikey', 29); tom.sayAge(); tom.sayName(); jikey.sayName(); </script></head> <body> </body> </html>
运行代码
查看全文
相关阅读:
cloudera cdh4 hue 安装
设计模式Observer(观察者模式)
编译android源码三(编译系统)
centos 6.3 修改默认的系统语言
Linux下查看文件和文件夹大小的df和du命令
编译android源码二(下载源代码)
devenv.exe
Javascript和xml合用
DataKeys的用法
XSL(转)
原文地址:https://www.cnblogs.com/jikey/p/1728014.html
最新文章
Linux的远程桌面(VNC,ctrl+space不能叫出输入法)
Java可变参数列表,泛型方法,以及泛型中的extends,super,?等规则
Ubuntu10.4, SUSE11.2下 mysql5.1/5.5的安装与简单配置(包括增加用户和修改字符集)
SUSE11.0 上安装tomcat5.5.27及一点问题
Sendkeys官方页面download拼写。。。PyWinauto官方页面download链接
汇编基础知识学习整理(一)
如果想做什么,坚持,用你的能你去证明自己
android安全问题(一) 静音拍照与被拍
android 代码 混淆 原来如此简单
android安全问题(二) 程序锁
热门文章
Android root 有感
android手机root后的安全问题 (三)
笔记本导购简单教程
android安全问题(三) 钓鱼程序
Android反编译教程
杀毒软件心痛虚设
编译android源码四(常见错误)
ubuntu 批量替换
编译android源码一(设置环境)
Ubuntu 下JDK安装
Copyright © 2011-2022 走看看