IE6 后引入了 P3P。
解决方法:在回应的 HTTP HEADER 中输出 P3P,比如在 PHP 中:
|
|
Quick notes
insertBefore()
方法可在已有的子节点前插入一个新的子节点。此方法可返回新的子节点。
|
|
在 IE 中如果没有 refchild
,那么 insertBefore()
方法第二个参数不要指定。而在 Firefox/Google Chrome
等需要设定为 null
。
考虑往列表 ul
中插入列表项 li
:
|
|
参考资料:
Using jQuery to test if an input has focus - StackOverflow
jQuery added a :focus selector so we no longer need to add it ourselves…
|
|
|
|
If you just want to figure out which element has focus, you can use $(document.activeElement)
; If you aren’t sure if the version will be 1.6 or lower, you can add the :focus
selector if it is missing:
|
|
如果在 CSS 中使用 !important
属性声明规则,那么在 JavaScript 中需要使用 cssText
属性对样式进行修改。
如果元素仅有一条规则,可以直接将新规则(带 !important 声明)复制给 cssText
:
|
|
如果元素具备多条规则,则需要将新规则加到 cssText
中:
|
|
参考资料:
一、使用 document.all
|
|
二、判断 window.ActiveXObject
|
|
三、判断 currentStyle
,得排除 Opera
浏览器
|
|