1.在設置div top,left是必須一起設置,否則對象消失 ,說明層postion設為fixed
document.getElementById("mydiv").style.top=10+"px";
document.getElementById("mydiv").style.left=10+"px";
在chrome下測試沒有這個問題
2.獲取頁面正在看的部分的高度,寬度.
IE8只能用document.documentElement.Height/Width
chrome可以用window.innerHeight/innerEidth或者上面那種
3.鼠標指針
IE下自定義鼠標指針加url即可,cursor:url("move.cur");
chrome 下需在後面加上,autocursor:url("move.cur"),auto;
4.javascript地址欄動態輸出(在打開任何網頁的情況下,地址欄輸入javascript:void((function(){ })()))執行一段代碼)
比如要輸出一個層 直接寫document.write 就會什麼也不顯示
只能用var obj=document.createElement("div");
obj.style一個個去設置