5-38.html

来自「《深入浅出Ajax》 源代码」· HTML 代码 · 共 18 行

HTML
18
字号
<HTML>
<HEAD>
<TITLE> AJAX深入浅出--代码5-38</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
<script language="javascript">
function JsApple() {
	this.color="red";
	this.weight=300;
	this.showApple=function() {
		document.write("this apple's color is "+this.color+";this apple's weight is "+this.weight+"g!");
	}
}
var myApple = new JsApple();
myApple.showApple();
</script>

⌨️ 快捷键说明

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