摘要:
var a = "ds fas dsdf asdf fadfsdsf"; a.split(' ').each ( function a(c) { alert( c ); } ) 阅读全文
摘要:
prototype:用 prototype 属性提供对象的类的一组基本功能。 对象的新实例“继承”赋予该对象原型的操作。 例如,要为 Array 对象添加返回数组中最大元素值的方法。 要完成这一点,声明该函数,将它加入 Array.prototype, 并使用它。 function array_max( ){ var i, max = this[0]; for (i = 1; i < ... 阅读全文
摘要:
ASP.NET 2.0个性化配置(profile) 为每个用户存储配置信息强类型 长期保存 支持匿名用户定义配置(profile) //定义配置(profile) //定义配置(w... 阅读全文