function p() { var name="abc";//为私有的属性不可以调用 this.age="20";//this为共有的 } var p1=new p();//实例化类 alert(p1.age);
js基础关于函数调用和赋值
1 <script> 2 window.onload=function () { 3 var inp=document.getElementsByTagName('input')[0]; 4 inp.onclick=box (); //直接输出结果自动执行 5 inp.onclick=box;//通过赋值的方式将函数名赋值给事件处理 6 } 7 function box () { 8 alert('aa'); 9 } 10 </script> 11 </head> 12 <body> 13 <input type="button" value="按钮">