摘要:
参考:https://www.jianshu.com/p/a7550c0e164f 原理: Vue.nextTick用于延迟执行一段代码,为了在数据变化之后等待 Vue 完成更新 DOM ,可以在数据变化之后立即使用Vue.nextTick(callback) 。这样回调函数在 DOM 更新完成后就 阅读全文
摘要:
页面: <template> <div id="d-whole"> <div id="d-top"> //顶部固定区域 ··· </div> <div id="d-scroll" :style="obj" @scroll="listenScroll"> //滚动区域 ··· <div> </div> 阅读全文
摘要:
需求:列表页分页,跳转详情页时,保存当前页数和搜索关键词。从详情页返回时,回到之前页数并搜索同一关键词。 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 阅读全文
摘要:
注:css用的是amazeui html: ···<div style="height:500px;overflow: auto;"> <table class="am-table" style="width:100%;padding: 10px 30px "> <tr> <td>序号</td> < 阅读全文
摘要:
wangEditor 官网自定义上传事件:https://www.kancloud.cn/wangfupeng/wangeditor2/123689 声明:我用的wangEditor版本是2.1.23 js: var editor = new wangEditor('div1'); // 普通的自定 阅读全文