1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
textarea::-webkit-input-placeholder{ padding: 1em; } textarea::-moz-placeholder{ padding: 1em; } <span style="color: #339966;">同理,input的定义方法为:</span> input::-webkit-input-placeholder{ padding: .2em; } input::-moz-placeholder{ padding: .2em; } |
月份:2016年5月
关于HTML5在动画制作工具Animatron的一些问题
在HTML中禁止文字的复制
JS返回上一页
当一个页面出现多个checkbox全选时的处理
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
HTML: <input type="checkbox" onclick="boxOnclick(this,'some1')">全选一 <input type="checkbox" onclick="boxOnclick(this,'some2')">全选二 <input type="checkbox" onclick="boxOnclick(this,'some3')">全选三 <input type="checkbox" class="some1">全选一的子集 <input type="checkbox" class="some2">全选二的子集 <input type="checkbox" class="some3">全选三的子集 JS: function boxOnclick(obj, someNum) { if (obj.checked) { $("." + someNum).each(function () { this.checked = true; }); } else { $("." + someNum).each(function () { this.checked = false; }); } } |