网页传递参数
location.search();
可编辑
obj.contenteditable=true
执行菜单命令
obj.execcommand
双字节字符
/[^\x00-\xff]/
汉字
/[\u4e00-\u9fa5]/
让英文字符串超出表格宽度自动换行
word-wrap: break-word; word-break: break-all;
透明背景
<iframe src=1.htm width=300 height=180 allowtransparency></iframe>
获得style内容
obj.style.csstext
html标签
document.documentelement.innerhtml
第一个style标签
document.stylesheets[0]
style标签里的第一个样式
document.stylesheets[0].rules[0]
防止点击空链接时,页面往往重置到页首端。
<a href=javascript:function()>word</a>
上一网页源
asp:
request.servervariables(http_referer)
javascript:
document.referrer
释放内存
collectgarbage();
禁止右键
document.oncontextmenu = function() { return false;}
禁止保存
<noscript><iframe src=*.htm></iframe></noscript>