引用:http://zhidao.baidu.com/question/450337100.html
<html>
<body>
<script type="text/javascript">
function A(){
var p=1;
var q;
this.A = function(x){//用this.变量 赋值一个函数。
q=2;
alert(x+p);
}
this.B = function (x){
alert(p+q+x);
}
}
var a=new A();
a.A(5);
a.B(6);
</script>
</body>
</html>