摘要: var Mouse = new function(){ this.x = 0; this.y = 0; this.capture = function(evt){ if (document.all) {// IE Mouse.x = window.event.x + document.body.scrollLeft; ... 阅读全文
posted @ 2008-12-19 19:30 stu_acer 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 原来在HTML文件头部声明了这样一句: 改成这样就好了: 但页面稍有变化,感觉不爽,于是又在google里找,终于发现这是IE5与IE6的区别: var scrollPos; if (typeof window.pageYOffset != 'undefined') { scrollPos = window.pageYOffset; } else if (typeof doc... 阅读全文
posted @ 2008-12-19 19:28 stu_acer 阅读(221) 评论(0) 推荐(0) 编辑
摘要: IE下载文件,没有提示保存的解决方法 解决方法是打开Windows Vista或者是windows 2003(2k/xp我没有试过,我想xp应该也可以按此方法的)注册表编辑器(单击“开始”,在“开始搜索”中输入regedit,回车)(可能需要通过用户帐户控制),找到HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\AttachmentExecut... 阅读全文
posted @ 2008-12-19 15:01 stu_acer 阅读(1149) 评论(0) 推荐(0) 编辑
摘要: 1、删除约束 alter table 表名 drop constraint 约束名 2、查看表的约束 sp_helpconstraint 表名 第二个结果集就列出了表的约束,constraint_name就是约束名 阅读全文
posted @ 2008-12-19 12:17 stu_acer 阅读(190) 评论(0) 推荐(0) 编辑