網(wǎng)頁傳遞參數(shù)
location.search();
可編輯
obj.contenteditable=true
執(zhí)行菜單命令
obj.execCommand
雙字節(jié)字符
/[^\x00-\xff]/
漢字
/[\u4e00-\u9fa5]/
讓英文字符串超出表格寬度自動換行
word-wrap: break-word; word-break: break-all;
透明背景
<IFRAME src="1.htm" width=300 height=180 allowtransparency></iframe>
獲得style內(nèi)容
obj.style.cssText
HTML標(biāo)簽
document.documentElement.innerHTML
第一個style標(biāo)簽
document.styleSheets[0]
style標(biāo)簽里的第一個樣式
document.styleSheets[0].rules[0]
防止點(diǎn)擊空鏈接時,頁面往往重置到頁首端。
<a href="javascript:function()">word</a>
上一網(wǎng)頁源
asp:
request.servervariables("HTTP_REFERER")
javascript:
document.referrer
釋放內(nèi)存
CollectGarbage();
禁止右鍵
document.oncontextmenu = function() { return false;}
禁止保存
<noscript><iframe src="*.htm"></iframe></noscript>
更多信息請查看IT技術(shù)專欄