上一篇:
刘若英的新歌
刘若英的新歌
最近狂写js,IDE自然要评测一下,本来想用aptana,但是那东西庞大了点,所以选了小巧的JsEclipse,不过还是有点问题的,比如:
function AdTv(){
this.playTime=5000;
this.widthDiv=320;
this.heightDiv=240;
this.templateHead="";
this.templateRear="";
this.divName="ad_tv";
this.posHeight=0;
this.posTop=0;
}
AdTv.prototype.setDivName=function(divName){this.divName=divName;}
在打this.的时候提示不出属性的值,只能手工打,似乎只能提示方法名(function关键字装饰的语句),如果用原型法植入属性也是如此,比如:
AdTv.prototype.xxx=123;
系统同样无法自动提示-_-
function AdTv(){
this.playTime=5000;
this.widthDiv=320;
this.heightDiv=240;
this.templateHead="";
this.templateRear="";
this.divName="ad_tv";
this.posHeight=0;
this.posTop=0;
}
AdTv.prototype.setDivName=function(divName){this.divName=divName;}
在打this.的时候提示不出属性的值,只能手工打,似乎只能提示方法名(function关键字装饰的语句),如果用原型法植入属性也是如此,比如:
AdTv.prototype.xxx=123;
系统同样无法自动提示-_-
项目 资金与理想
2008/01/17 14:20 | by


