摘要: 1. 动态添加对象的属性和方法// start with an empty objectvar dog = {};// add one property dog.name = "Benji";// now add a method dog.getName = function () { return dog.name; };2. 一次性创建对象var dog = { name: "Benji", getName: function () { return this.name; }};3. 使用内建的构造函数// one way -- using a li 阅读全文
posted @ 2013-09-19 16:48 Master HaKu 阅读(238) 评论(0) 推荐(0) 编辑
摘要: jQuery UI Widget - Default functionality color me color me color me Toggle disabled option Go black 运行结果: 阅读全文
posted @ 2013-09-19 08:36 Master HaKu 阅读(1449) 评论(0) 推荐(0) 编辑