摘要: 1 // 复制到剪切板 2 function copy(str){ 3 var save = function (e){ 4 e.clipboardData.setData('text/plain',str);//clipboardData对象 5 e.preventDefault();//阻止默认 阅读全文
posted @ 2020-01-03 15:17 风如白话 阅读(1053) 评论(0) 推荐(0) 编辑
摘要: //倒计时 function countdown(times, callback){ var _this = this; var timer = null; timer=setInterval(function(){ var day=0, hour=0, minute=0, second=0;//时 阅读全文
posted @ 2020-01-03 15:12 风如白话 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 1 /***引入 js 文件 2 @example: import('js/aui.picker.js') 3 @example: import(['js/aui.picker.js', 'css/aui.picker.css']) 4 */ 5 function import(url){ 6 va 阅读全文
posted @ 2020-01-03 14:58 风如白话 阅读(5689) 评论(0) 推荐(1) 编辑