在线js解压缩工具: http://dean.edwards.name/packer/
js压缩工具: http://aymoo.cn/js-compressor.html
如何正确的在XHTML插入FLASH http://www.aspstat.com/218
2. 刷新 :onbeforeunload(){}
3.
JS判断IE是刷新 还是关闭
- window.onbeforeunload = function (){
- var n = window.event.screenX - window.screenLeft;
- var b = n > document.documentElement.scrollWidth-20;
- if (b && window.event.clientY < 0 ¦ ¦ window.event.altKey){
- alert( "关闭" );
- //关闭的代码
- }
- else {
- alert( "刷新" );
- //刷新的代码
- }
- }
window.event.returnValue = "真的要刷新页面么?";