文章列表
转 http://www.blogjava.net/huliqing/archive/2008/04/18/193907.html
java安装文件制作,exe4j + inno setup + fatjar
with语句可以引用对象中已有的所有属性,但是不能给对象添加属性。
操作方法如下
function persion(){
this.name = "yib";
this.age = 25;
}
var pp = new persion();
with(pp){
alert("姓名:" + name);
alert("年龄:" + age);
}
alert(typeof("aa")); string
alert(typeof(123)); number
alert(typeof(true)); boolean
alert(typeof(new Array())); object
alert(typeof(function(){})); functio ...