5-39.html
来自「《深入浅出Ajax》 源代码」· HTML 代码 · 共 30 行
HTML
30 行
<HTML>
<HEAD>
<TITLE> AJAX深入浅出--代码5-39</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
<script language="javascript">
function JsApple() {
var quality="good"; //private
this.color="red"; //public
this.weight=300; //public
JsApple.count=0;; //static
this.showApple=function() { //public
document.write("this apple's color is "+this.color+";this apple's weight is "+this.weight+"g!<br>");
}
JsApple.showAppleCount=function() { //static
document.write("JsApple.count="+JsApple.count+".<br>");
}
this.showQuality=function() { //public
document.write("this apple's quality is "+quality+"!<br>");
}
JsApple.count++;
}
var myApple = new JsApple();
myApple.showApple();
JsApple.showAppleCount();
myApple.showQuality();
</script>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?