08 2017 档案
摘要:var content = '23px' content = content.replace(/(\d+)px/g, function(s, t) { s = s.replace('px', ''); var value = parseInt(s) * 0.001; // 100px = 1rem return value + "rem"; //0.23rem }); ...
阅读全文
摘要:官方用例:https://router.vuejs.org/zh-cn/advanced/scroll-behavior.html import Vue from 'vue' import Router from 'vue-router' import index from '@/components/index.vue' Vue.use(Router) const router...
阅读全文
摘要:开启HTML5 History Mode后,尤其需要server端的支持,官方文档里就有介绍:(传送门: https://router.vuejs.org/zh-cn/essentials/history-mode.html)
阅读全文
摘要:$scope.$watch('custArea', function(newValue, oldValue) { angular.forEach(newValue, function(item, key) { if($scope.custArea.indexOf("000000") > -1){ //...
阅读全文