摘要:
<input id="btn1" type="button" value="按 钮" /> <input type="button" value="按 钮" onclick="btn_click()" /> <input type="text" onblur="alert('失去焦点')" /> < 阅读全文
摘要:
<input type="checkbox" id="a" value="" />全选 <input type="checkbox" class="b" value="1" />1 <input type="checkbox" class="b" value="2" />2 <input type= 阅读全文
摘要:
用符号来描述书写规则:/中间写正则表达式/ ^:匹配开头,$: 匹配结尾;/^ve/以ve开头的/ve$/以ve结尾 \d:一个任意的数字 \w:一个任意的数字或字母 \s:任意字符串 {n}:把左边的表达式重复N遍 {m,n}:把左边的表达式重复至少M遍至多N遍 {m,}:把左边的表达式重复至少M 阅读全文
摘要:
*{ padding: 0px; margin: 0px; } .nav{ width: 500px; height: 35px; border: 1px solid #7FFFD4; position: absolute; top: 0px; left: 0px; } .nav-title{ wi 阅读全文
摘要:
#stage { width: 500px; height: 300px; border: 3px solid black; margin: 100px; overflow: hidden; position: relative; } #banner { width: 3000px; height: 阅读全文
摘要:
.mask { width: 100%; /*height: 500px;*/ position: fixed; top: 0px; left: 0px; background-color: black; opacity: 0.5; } .show { width: 500px; height: 3 阅读全文