点滴积累
文章平均质量分 50
zanazh
这个作者很懒,什么都没留下…
展开
-
contentWindow 和 contentDocument
contentWindow 兼容各个浏览器,可取得子窗口的 window 对象。 contentDocument Firefox 支持,> ie8 的ie支持。可取得子窗口的 document 对象。 在子级iframe设置 父级 iframe ,或 孙级 iframe 高度: function showIframeH(){ var parentWin = parent.原创 2012-10-29 15:54:34 · 967 阅读 · 0 评论 -
javascript中window.location和window.location.href的区别
window.location是页面的位置对象,window.location.href是location的一个属性值,并且它是location的默认属性。就是说对window.location直接赋值一个url实际上就是对window.location.href赋值。 location对象除了有href属性外还有很多其他属性和方法,而href就是一个字符串。只不过修改location的原创 2012-10-24 13:19:07 · 919 阅读 · 0 评论 -
document.body 和 document.documentElement
1)document.body和document.documentElement比较: document.body是DOM中Document对象里的body节点, document.documentElement是文档对象根节点(html)的引用。 IE在怪异模型(quick mode)下document.documentElement无法正确取到clietHe原创 2012-10-29 10:04:30 · 599 阅读 · 0 评论 -
HTML5中的新标签和新事件属性(Tags and Event Attributes)
Defines an article Defines content aside from the page content Defines sound content Isolates a part of text that might be formatted in a different direction from other text outside it Used to原创 2012-01-16 10:45:25 · 565 阅读 · 0 评论 -
ECMAScript 5.1 学习笔记
http://blog.thinkjs.net/archives/129 1. 简介 ECMAScript 5.1 (或仅 ES5) 是ECMAScript(基于JavaScript的规范)标准最新修正。 与HTML5规范进程本质类似,ES5通过对现有JavaScript方法添加语句和原生ECMAScript对象做合并实现标准化。 2. 浏览器支持 随着Opera 11.60的发布转载 2012-04-28 22:18:33 · 770 阅读 · 0 评论 -
CSS hack,区别IE6, 7, 8 ,firefox
0)css3中 div#div2 { transform:rotate(30deg); -ms-transform:rotate(30deg); /* IE 9 */ -moz-transform:rotate(30deg); /* Firefox */ -webkit-transform:rotate(30deg); /* Safari and Chrome */ -o-trans原创 2012-01-11 22:13:09 · 352 阅读 · 0 评论