⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 helloobj2.htm

📁 javascript oop & package sample
💻 HTM
字号:
<script>
function hello() {
    this.id = "200200431";
    this.name = "冠己荐";
}
hello.prototype = {
	sayHello : function() {
		alert("荤锅 : " + this.id + ", 捞抚 : " + this.name);
	},

	sayHello2 : function(name) {
		alert("荤锅 : " + this.id + ", 捞抚 : " + name);
	}

}
var helloObj = new hello();
helloObj.sayHello();
helloObj.sayHello2('冠沥辨');
</script>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -