摘要: https://blog.csdn.net/qq_38366657/article/details/81538145 阅读全文
posted @ 2018-11-23 14:38 黎明之光123 阅读(512) 评论(0) 推荐(0)
摘要: (function(t, e) { "use strict"; var a = function(t) { this.elem = t }; a.init = function() { var t = e.querySelectorAll(".sharer"), r, i = t.length; ... 阅读全文
posted @ 2018-11-13 17:21 黎明之光123 阅读(262) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-11-08 17:08 黎明之光123 阅读(210) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2018-09-14 22:08 黎明之光123 阅读(1) 评论(0) 推荐(0)
摘要: 传送门 https://blog.csdn.net/qiqingjin/article/details/79219206 点击 阅读全文
posted @ 2018-09-13 11:19 黎明之光123 阅读(244) 评论(0) 推荐(0)
摘要: --> class="child-view"--> .child-view { position: absolute; width:100%; transition: all .8s cubic-bezier(.55,0,.1,1);}.slide-left-enter, .slide-right-leave-active { opacity: 0; -webkit-transfo... 阅读全文
posted @ 2018-09-06 18:00 黎明之光123 阅读(707) 评论(0) 推荐(0)
摘要: // 整数或者小数:^[0-9]+\.{0,1}[0-9]{0,2}$ 只能输入数字:"^[0-9]*$"。 只能输入n位的数字:"^\d{n}$"。 只能输入至少n位的数字:"^\d{n,}$"。 只能输入m~n位的数字:。"^\d{m,n}$" 只能输入零和非零开头的数字:"^(0|[1-9][ 阅读全文
posted @ 2018-08-29 13:51 黎明之光123 阅读(552) 评论(0) 推荐(0)
摘要: 传送门https://www.2cto.com/kf/201709/680989.html 点击 阅读全文
posted @ 2018-08-15 09:24 黎明之光123 阅读(107) 评论(0) 推荐(0)
摘要: 传送门 http://tool.oschina.net/uploads/apidocs/jquery/regexp.html 阅读全文
posted @ 2018-08-13 15:15 黎明之光123 阅读(93) 评论(0) 推荐(0)
摘要: function main(num,total=1) { if(num===1) return total; return main(num-1,num*total) } main(5) 阅读全文
posted @ 2018-08-09 17:03 黎明之光123 阅读(77) 评论(0) 推荐(0)