事件來源物件
event.srcElement.tagName
event.srcElement.type
擷取釋放
event.srcElement.setCapture();
event.srcElement.releaseCapture()); ##事件按鍵
event.keyCode
event.shiftKey
event.altKey
event.ctrlKey
事件回傳值
event.returnValue
滑鼠位置
event. x
event.y
窗體活動元素
document.activeElement
綁定事件
document.captureEvents(Event.KEYDOWN);
存取窗體元素
document. all("txt").focus();
document.all("txt").select();
窗體指令
document.execCommand
視窗COOKIE
document. cookie
選單事件
document.oncontextmenu
建立元素
document.createElement("SPAN");
根據滑鼠取得元素:
document.elementFromPoint(event.x,event. y).tagName=="TD
document.elementFromPoint(event.x,event.y).appendChild(ms)
窗體圖片
document.images[索引]
表單事件綁定定
document.onmousedown=scrollwindow;
元素
document.窗體.elements[索引]
物件綁定事件
document.all.xxx.detachEvent('onclick',a) ;
外掛程式數目
navigator.plugins
取變數類型
typeof($js_libpath) == "undefined"
下拉方塊
下拉方塊.options[索引]
下拉框.options.length
查找物件
document.getElementsByName("r1");
document.getElementById(id);
計時
timer=setInterval('scrollwindow()',delay );
clearInterval(timer);
UNCODE編碼
escape() ,unescape
父物件
obj.parentElement(dhtml)
obj.parentNode(dom)
交換交換交換表格的行
TableID.moveRow(2,1)
替換CSS
document.all.csss.href = "a.css";
並排顯示
display:inline
隱藏焦點
hidefocus=true
依寬度換行
style="word-break:break-all"
自動刷新
簡單郵件
快速轉到位置
obj.scrollIntoView(true)
錨
anchors
網頁傳遞參數
location.search();
可編輯
obj.contenteditable=true
執行選單指令
obj.execCommand
雙位元組字元
/[^ \x00-\xff]/
漢字
/[\u4e00-\u9fa5]/
讓英文字串超出表格寬度自動換行
word-wrap: break-word; word-break: break-all;
透明背景
##HTML標籤
document.documentElement.innerHTML
第一個style標籤
document.styleSheets[0]
style標籤裡的第一個樣式
document.styleSheets[0]. rules[0]
防止點擊空白連結時,頁面往往會重置到頁首端。
word
上一網頁來源
asp:
request.servervariables("HTTP_REFERER")
javascript:
document.referrer
釋放記憶體
CollectGarbage();
禁止右鍵
document.oncontextmenu = function() { return false;
禁止保存
)no ;
禁止選取
以上是Javascript使用小技巧匯總的詳細內容。更多資訊請關注PHP中文網其他相關文章!