摘要:
正则正数,负数,整数,浮点数校验大全 正则正数,负数,整数,浮点数校验大全 正则正数,负数,整数,浮点数校验大全 正则正数,负数,整数,浮点数校验大全 <!--非负数:<input type="text" name="" pattern="^\d+$">--><!--正整数:<input type= 阅读全文
摘要:
ES6标准新增了一种新的函数:Arrow Function(箭头函数)。 为什么叫Arrow Function?因为它的定义用的就是一个箭头: 上面的箭头函数相当于: 箭头函数相当于匿名函数,并且简化了函数定义。箭头函数有两种格式,一种像上面的,只包含一个表达式,连{ }和return都省略掉了。还 阅读全文
摘要:
清除浮动的方法:父级div定义 伪类:after 和 zoom 代码如下: <style type="text/css"> .div1{background:#000080;border:1px solid red;} .div2{background:#800080;border:1px soli 阅读全文
摘要:
阻止冒泡事件demo 按我 消失的盒子 阅读全文
摘要:
纯CSS实现气泡聊天框的方法 气泡聊天框实现 运行结果: 阅读全文
摘要:
第1步 第2步 第3步 第4步 ... 阅读全文
摘要:
实现原理: 第一步:分别建一个input[type=text]、一个input[type=button]标签,优化样式; 第二步:把input[type=file]标签,设置透明,位置对齐以上的两个标签并位于其底部; 第三步:用jquery实现把input[type=file]的文字显示在input 阅读全文
摘要:
/* WebKit browsers */ input::-webkit-input-placeholder { color: #999; } /* Mozilla Firefox 4 to 18 */ input:-moz-placeholder { color: #999; } /* Mozil 阅读全文
摘要:
input[type=text]:focus,input[type=password]:focus,textarea:focus{ outline:none; border-color:rgba(241,39,62,.75); /*设置边框阴影*/ -webkit-box-shadow:0 0 8p 阅读全文