编程语言-Javascript
jxluoix
能够自己独立开发中小型的软件系统;
对工作态度认真、执着、诚恳;勇于专研、探索、创新;
接受新事物快、见识宽广.
展开
-
JS 实现I P地址分配
NetworkMgr = function() { } NetworkMgr.prototype = { getIpAddressClass: function(address) { var iaddress = this.toLong(address) return this.getIpAddressClass0(iaddress); }, getIpAddr...2010-03-31 18:28:21 · 192 阅读 · 0 评论 -
JS 实现I P地址分配 二
SubnetCalMgr = Ext.extend(Ext.Panel, { subnetInfoPanel: null, subnetId: null, initComponent: function() { SubnetCalMgr.superclass.initComponent.call(this); this._initialize(); }, _initial...2010-03-31 18:36:54 · 179 阅读 · 0 评论 -
Calendar implementation with Javascript
Calendar implementation with Javascript2012-06-12 00:27:30 · 87 阅读 · 0 评论 -
lambda和函数式概念区别
> (define x (let ((a "this is a")) a)) > x $22 = "this is a"2016-11-11 16:42:10 · 374 阅读 · 0 评论