12 2019 档案
摘要:需求:列表页分页,跳转详情页时,保存当前页数和搜索关键词。从详情页返回时,回到之前页数并搜索同一关键词。 js: mainApp.factory('theParam', function() { return { currentPage : 1,pageSize : 12,param:'' }; }
阅读全文
摘要:需求:金额格式化为有两位小数,不足补0 js: mainApp.filter('addZeroTwo', function() { //金额格式化 return function(value) { if(value '' || value null || value undefined){ retu
阅读全文
摘要:amazeUI官网:http://amazeui.shopxo.net/javascript/slider/ 我的问题: 轮播图放在模态框里的,一开始不显示但初始化了slider,点击时显示轮播图,但是最初几秒没图,要过几秒才会有图。 html: <div class="am-modal am-mo
阅读全文
摘要:参考:https://www.jianshu.com/p/5e5e59065e9c 效果: index.html: <link href="https://cdn.bootcss.com/Swiper/3.4.2/css/swiper.css" rel="stylesheet"> <script s
阅读全文
摘要:参考:https://www.cnblogs.com/zhangnan35/p/10709876.html https://www.cnblogs.com/zyrblog/p/11142624.html translate三维坐标图: rotate判断: 正向轴对着眼睛,顺时针则旋转角度为正,逆时针
阅读全文
摘要:搬运自:https://blog.csdn.net/SonaEx/article/details/80879061 禁用: $("#id").attr("disabled","true"); $("#id").attr("disabled",true); $("#id").attr("disable
阅读全文