前端 补遗
更新日期:
文章目录
锚
1 2 | <a href="#mao"></a> <a name="mao"></a> |
frameset 能够使用的文档声明头: html 4.01 frameset
xhtml 1.0 frameset
target
_blank
_top
_parent
_self
1 2 3 4 5 6 | /*比例可能会失调*/ background-size: 100% 100%; /*图片比例不会变化, 但是一部分会看不见*/ background-size: cover; /*图片比例不会变化, 缩小呈递*/ background-size: cantain; |
1 2 3 4 5 6 7 8 | $('').draggable( { containment: "#xiaoming", axis: "y", drag: function(){ $(this).css('top'); } }); |
1 2 3 4 5 6 7 | xhr.onreadystatechange = function(){ if(xhr.readyState == 4) { if(xhr.state >= 200 && xhr.status < 300 || xhr.status == 304){ xhr.responseXML; } } } |
IE6 bug
1 2 3 4 5 6 7 8 | opacity: 0.6; _filter:alpha(opacity=60); height: 13px; _font-size:0; overflow:hidden; _zoom:1; |