2019年2月13日

ajax 请求

摘要: <script> $.ajax({ url: ‘接口地址’, type: 'POST', async:true, //异步 xhrFields:{ withCredentials:true //跨域 }, data: { }, success: function(res){ console.log( 阅读全文

posted @ 2019-02-13 15:38 牧己 阅读(99) 评论(0) 推荐(0) 编辑

2019年1月9日

截取URL的某个参数值

摘要: 原文作者链接 https://www.jianshu.com/p/c9324d237a8e 原文作者链接 https://www.jianshu.com/p/c9324d237a8e 阅读全文

posted @ 2019-01-09 10:56 牧己 阅读(864) 评论(0) 推荐(0) 编辑

2018年12月21日

去除input获取光标时的默认样式

摘要: 给input加上样式 outline:none; 阅读全文

posted @ 2018-12-21 14:35 牧己 阅读(2490) 评论(0) 推荐(0) 编辑

分页插件 jquery.pagination.js

摘要: 引用 <script src="http://www.jq22.com/jquery/jquery-1.10.2.js"></script> <link rel="stylesheet" href="librarys/fenye/pagination.css"> <script src="libra 阅读全文

posted @ 2018-12-21 09:51 牧己 阅读(924) 评论(0) 推荐(0) 编辑

2018年12月13日

日历签到插件

摘要: 引用所需要的js/css <link rel="stylesheet" type="text/css" href="css/sign2.css"><script type="text/javascript" src="js/calendar2.js"></script> <script src="h 阅读全文

posted @ 2018-12-13 14:40 牧己 阅读(821) 评论(0) 推荐(0) 编辑

js formData图片上传(单图上传、多图上传)后台java

摘要: 单图上传 <div class="imgUp"> <label>头像单图</label> <input type="file" name='photo' class="mui-input-clear" id='upimg' style="opacity: 0;" > <img src="images 阅读全文

posted @ 2018-12-13 14:07 牧己 阅读(8835) 评论(0) 推荐(0) 编辑

2018年12月10日

js 下拉加载

摘要: // 下拉加载 var clientHeight = $(window).height() //当前可视的页面高度 console.log(clientHeight) //滚动条到页面底部加载更多 $(window).scroll(function(){ var scrollTop = $(this 阅读全文

posted @ 2018-12-10 10:20 牧己 阅读(1036) 评论(0) 推荐(0) 编辑

2018年12月7日

video 在移动端播放禁止全屏

摘要: <video src="" preload controls x5-playsinline="" playsinline="" webkit-playsinline=''></video> 这样就OK了 阅读全文

posted @ 2018-12-07 17:14 牧己 阅读(23617) 评论(3) 推荐(0) 编辑

2018年11月28日

js 微信支付

摘要: 引入 <script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script> <script src="http://www.jq22.com/jquery/jquery-1.10.2. 阅读全文

posted @ 2018-11-28 11:41 牧己 阅读(498) 评论(0) 推荐(0) 编辑

2018年11月27日

jquery中 苹果手机对on触发的点击事件无效果

摘要: 在被点击的元素上加上样式 cursor:pointer; 苹果手机就可以触发事件了 阅读全文

posted @ 2018-11-27 15:04 牧己 阅读(906) 评论(0) 推荐(0) 编辑

导航