- 博客(7)
- 收藏
- 关注
转载 js根据key值排序
const unordered = { '1': 'foo', '2': 'bar', '5': 'br', '13': 'ar', '111': 'baz' }; const ordered = {}; Object.keys(unordered).sort().forEach(function(key) { ordered[key]...
2019-08-13 15:52:00 592
转载 多选下拉框
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <link rel="stylesheet" href="css/fSelect.css" />...
2019-08-08 17:42:00 165
转载 jquery刷新页面代码
window.location.reload()刷新当前页面.parent.location.reload()刷新父亲对象(用于框架)opener.location.reload()刷新父窗口对象(用于单开窗口)top.location.reload()刷新最顶端对象(用于多开窗口) 转载于:https://www.cnblogs.com/lxqboke/p/11274034.html...
2019-07-31 09:10:00 164
转载 echarts属性设置
// 全图默认背景 // backgroundColor: ‘rgba(0,0,0,0)’, // 默认色板 color: ['#ff7f50','#87cefa','#da70d6','#32cd32','#6495ed', '#ff69b4','#ba55d3','#cd5c5c','#ffa500','#40e0d0', '#1e90ff','#ff63...
2019-07-19 15:48:00 146
转载 HTML 点击可以直接拨打电话(移动端)
<a href="tel:10086">10086</a> 转载于:https://www.cnblogs.com/lxqboke/p/11213399.html
2019-07-19 15:11:00 11962
转载 select添加提示语
使用vue: <select v-model="action_type" @change="type" class="action_type"> <option disabled value="">请选择</option> <option>选项1</option> ...
2019-07-19 11:29:00 3807
转载 App不需要重复登录,vue
beforeRouteEnter(to,from,next){ if(from.path=="/"){ let u=localStorage.getItem('userName'); let p=localStorage.getItem('password'); ...
2019-07-19 11:21:00 530
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人