摘要:
根据http://www.jankoatwarpspeed.com/post/2009/07/28/reinventing-drop-down-with-css-jquery.aspx简单的写了一个MenuButton类……满足基本需求吧……不要太苛刻嘛·~注:本代码并没有涉及到css,有兴趣者请去源网站去扒css吧~// items:内容,格式为{}// container:节点ID// defaultValue: 初始值// width: 下拉菜单高度// onCommand:选择后的返回函数var MenuButton = $.Class();$.extend(MenuButt 阅读全文
摘要:
还真不错,但做什么都是以本体为主的,稍微有些不适应还。对应的加了两个方法保持和prototype统一。1。用它就可以向Class.create()一样创建伪类啦~~(我可真无聊……)$.extend({ Class : function () { return function () { this.initialize.apply(this, arguments); }}}); 2。用它就可以等同于function的bind方法啦啦啦啦……&$.extend(Function.prototype,{ proxy : function (s... 阅读全文