摘要: ;(function(global,factory){ typeof exports 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define 'function' && define 阅读全文
posted @ 2020-09-24 15:57 littleboyck 阅读(1341) 评论(0) 推荐(0) 编辑
摘要: <style>.layui-header{height:60px}#head-pad{height:60px}.fixed-header{position:fixed;top:0;right:0;left:0}</style> <div class="layui-header" id="dmt-fr 阅读全文
posted @ 2020-09-14 17:51 littleboyck 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 仓库地址:https://gitee.com/littleboyck/front.git目录所在位置:router文件夹index.html的<body>中 <div id="app"></div> <script src="./lib/Router.js"></script> view文件夹中新建 阅读全文
posted @ 2020-09-03 13:19 littleboyck 阅读(553) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>点击空白处弹窗消失 阅读全文
posted @ 2020-04-12 16:07 littleboyck 阅读(2071) 评论(0) 推荐(0) 编辑
摘要: 参考连接:https://blog.csdn.net/yw00yw/article/details/81354533 1、先下载好NodeJS,然后输入如下命令安装yarn npm install -g yarn 2、查看版本: yarn --version 3、查看 yarn 默认配置 yarn 阅读全文
posted @ 2020-03-04 18:06 littleboyck 阅读(1365) 评论(0) 推荐(0) 编辑
摘要: 1、在NodeJS安装位置,新建文件夹node_cache 、node_global 默认情况下,npm的本地仓库在 ~\AppData\Roaming , 如下图所示 2、打开CMD,将其修改为 npm config set prefix "D:\Program Files\nodejs\node 阅读全文
posted @ 2020-03-04 15:01 littleboyck 阅读(3888) 评论(0) 推荐(1) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o 阅读全文
posted @ 2019-12-05 17:27 littleboyck 阅读(196) 评论(0) 推荐(0) 编辑
摘要: var kModule = (function(){ var modules = {} ,config = {} ,define = function(deps,factory){ typeof deps == 'function' && ( factory = deps, deps = [] ) 阅读全文
posted @ 2019-11-18 11:57 littleboyck 阅读(306) 评论(0) 推荐(0) 编辑
摘要: var depMods = (function(){ var modules = {}; var defined = function(name,deps,impl){ typeof deps == 'function' && ( impl = deps, deps = [] ) if(deps.l 阅读全文
posted @ 2019-11-18 10:22 littleboyck 阅读(252) 评论(0) 推荐(0) 编辑
摘要: #INSTR(字符串, 子串),#返回值:第一个子串的索引-1#类似indexOf()#例如:SELECT INSTR('人民万岁,世界万岁','万')SELECT INSTR('人民万岁,世界万岁','中华') #INSTR(字段名, 字符串)#例如SELECT *,INSTR(DEPART,'系 阅读全文
posted @ 2019-11-12 13:03 littleboyck 阅读(726) 评论(0) 推荐(0) 编辑