修改默认样式

点击,聚焦input不出现框

input:focus { outline: none; }
input{outline:none;}

取消select默认样式

select {
/*Chrome和Firefox里面的边框是不一样的,所以复写了一下*/
border: solid 1px #000;
/*很关键:将默认的select选择框样式清除*/
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
/*将背景改为红色*/
background:red;
/*加padding防止文字覆盖*/
padding-right: 14px;
}
/*清除ie的默认选择框样式清除,隐藏下拉箭头*/
select::-ms-expand { display: none; }

只允许输入字符

onkeypress="return (/[\d]/.test(String.fromCharCode(event.keyCode)))"

取消input提示栏

autocomplete="off"

jQuery选中被选中的option

"(#select_id").find("option:selected")

table设置边框不显示

加上下段代码

border-collapse: collapse;

你可能感兴趣的:(修改默认样式)