1、無提示關閉視窗
2、防止被人iframe
if (top.location != self.location)
3、判斷乙個物件存在不存在
document.all("a")==null(不存在)
4、彈出子視窗
window.open ('default.asp', 'newwindow', 'height=100, width=400, top=0, left=0, *******=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')
5、開啟模態視窗
window.showmodaldialog('default.asp',window,'help: no; resizable: no; status: no;scrollbars:no;center: yes;dialogwidth:width;dialogheight:height;')
6、彈出的子視窗重新整理父視窗
window.parent.location.reload();
7、模態視窗重新整理父視窗
window.parent.dialogarguments.document.execcommand('refresh');
8、乙個js檔案包含另外乙個js檔案
document.write('<\/script>');
9、讓文字豎著寫
佛羅倫10、iframe引用自己
window.parent.document.getelementbyid("iframe_dg")
這樣在iframe檔案裡就可以操作它自己,比如:window.parent.document.getelementbyid("iframe_dg").height=200
11、根據內容自動調整iframe高度
function autosetiframesize()
}
必須定義iframe的name屬性
將a.asp的修改為:
12、為單元格新增漸變色效果(ie支援,firefox不支援)
.bg3
效果如圖
13、定時執行任務
規定一項任務在一定時間內執行:delayid=settimeout(vcode, imilliseconds),在需要的時候,可以強制停止該任務:cleartimeout(delayid)
14、自動選中複製
選中我並複製我
15、產生隨機數
vb的rnd函式產生的隨機數範圍為0-1。假如要從(min,max)這個範圍內隨機抽取乙個數,具體公式如下: 隨機數 = (max - min) * rnd() + min,min和max可以是任意整數,只是min
指令碼收藏iframe
1 無提示關閉視窗 2 防止被人iframe if top.location self.location 3 判斷乙個物件存在不存在 document.all a null 不存在 4 彈出子視窗 window.open default.asp newwindow height 100,width ...
執行指定iframe頁面的指令碼
mark一下,通過jquery執行指定iframe頁面裡面的指令碼,當前僅知道頁面名稱。window.top.document find iframe src pagesrc 0 contentwindow.functionname pagesrc 指的是執行時,頁面的src具體值,比如page.h...
利用指令碼加入域和退出域 轉貼 收藏
利用指令碼加入域和退出域 加入域的指令碼 echo off netdom join computername domain test.com userd user passwordd pass reboot 5 退出域的指令碼 echo off netdom remove computername ...