Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>添加Prototype对象方法</title>
<script language="JavaScript">
// 对象的构造函数
function circle(r, color){
this.r = r;
this.color = color;
this.display = showCircle;
}
// 对象方法
function showCircle(){
document.write("半径 : " + this.r + "<br>");
document.write("色彩 : " + this.color + "<br>");
document.write("圆周率 : " + this.PI + "<br><hr>");
CSS代码...
JS代码...
xxxxxxxxxx