10 2017 档案

摘要:token = JSON.parse(data).token; $.ajaxSetup({ //发送请求前触发 beforeSend: function(xhr) { //可以设置自定义标头 xhr.setRequestHeader('token', token); } }) 阅读全文
posted @ 2017-10-20 18:36 糖糖部落 阅读(599) 评论(0) 推荐(0)
摘要:js代码: 调用: 参考链接:http://www.zhangxinxu.com/wordpress/2016/12/web-mobile-scroll-prevent-window-js-css/ demo:http://www.zhangxinxu.com/study/201612/mobile 阅读全文
posted @ 2017-10-20 17:38 糖糖部落 阅读(1490) 评论(0) 推荐(0)
摘要:参考链接:https://segmentfault.com/a/1190000002783179 阅读全文
posted @ 2017-10-20 14:27 糖糖部落 阅读(475) 评论(0) 推荐(0)
摘要:参考链接:http://www.jianshu.com/p/caa1032e5865 阅读全文
posted @ 2017-10-20 11:33 糖糖部落 阅读(842) 评论(0) 推荐(0)
摘要:原css: 解决方法:去掉line-height和vertical-align 使用 flex 布局。 把父元素设为: 阅读全文
posted @ 2017-10-19 18:20 糖糖部落 阅读(1799) 评论(0) 推荐(0)
摘要:参考:http://www.jianshu.com/p/42e11515c10f 阅读全文
posted @ 2017-10-18 10:55 糖糖部落 阅读(118) 评论(0) 推荐(0)
摘要:原因: By default, Safari Mobile does not use the :active state unless there is a touchstart event handler on the relevant element or on the <body>. 解决方法 阅读全文
posted @ 2017-10-16 11:12 糖糖部落 阅读(274) 评论(0) 推荐(0)
摘要:$(document).on('touchend',function(e){ if(!$('.menuIcon')[0].contains(e.target)){ if(flag == 0){ $('.navMenu').slideUp(); flag = 1; } ... 阅读全文
posted @ 2017-10-16 11:06 糖糖部落 阅读(439) 评论(0) 推荐(0)