摘要:
/// <summary> /// 复制对象 /// </summary> /// <returns>返回它本身的一个副本</returns> public object GetCopy() { return MemberwiseClone(); } 阅读全文
摘要:
document.title //设置文档标题等价于HTML的title标签document.bgColor //设置页面背景色document.fgColor //设置前景色(文本颜色)document.linkColor //未点击过的链接颜色document.alinkColor //激活链接(焦点在此链接上)的颜色document.vlinkColor //已点击过的链接颜色documen... 阅读全文