//window.onbeforeunload = function () { // var scrollpos; // if (typeof window.pageyoffset != 'undefined') { // scrollpos = window.pageyoffset; // } // else if (typeof document.compatmode != 'undefined' && document.compatmode != 'backcompat') { // scrollpos = document.documentelement.scrolltop; // } // else if (typeof document.body != 'undefined') { // scrollpos = document.body.scrolltop; // } // document.cookie = "scrolltop=" + scrollpos; //存储滚动条位置到cookies中 //} //window.onload = function () { // if (document.cookie.match(/scrolltop=([^;]+)(;|$)/) != null) { // var arr = document.cookie.match(/scrolltop=([^;]+)(;|$)/); //cookies中不为空,则读取滚动条位置 // document.documentelement.scrolltop = parseint(arr[1]); // document.body.scrolltop = parseint(arr[1]); // } //}