
javascript
文章平均质量分 79
zhuxinhua
这个作者很懒,什么都没留下…
展开
-
Ext.tree.ColumnTree 应用
HTML代码: 带复选框(checkbox)的树 <!--$(function() { var tree = new Ext.tree.ColumnTree({ width: 550, height: 300, rootVisible:false,原创 2009-10-19 11:12:00 · 5609 阅读 · 7 评论 -
JavaScript创建对象与构造函数的实现方法
function sayFirstName(){ alert(this.firstName.toUpperCase()); } function newClass(){ this.firstName="frank"; this.sayHello=function(){ alert("hello"); } } newClass.prototype.sayName=function(原创 2010-03-30 11:33:00 · 875 阅读 · 0 评论