2009年4月16日
摘要: //假设要生成的JS文件为:xyz.js string path = Server.MapPath("../js/xyz.js "); // Delete the file if it exists. if (File.Exists(path)) { File.Delete(path); } // Create the file. StreamWriter sr = File.CreateTe... 阅读全文
posted @ 2009-04-16 18:13 钱途无梁 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 时间上 onmousemove 事件触发后,再触发 onmouseover 事件。 按钮上 不区分鼠标按钮。 动作上 onmouseover 只在刚进入区域时触发。onmousemove 除了刚进入区域触发外,在区域内移动鼠标,也会触发该事件。 当鼠标移动很快时,可能不会触发这两个事件。 阅读全文
posted @ 2009-04-16 17:02 钱途无梁 阅读(1492) 评论(1) 推荐(1) 编辑