12 2018 档案

摘要:原文:https://blog.csdn.net/hu_mouse/article/details/47972271 阅读全文
posted @ 2018-12-24 17:58 無玑小姐 阅读(3997) 评论(0) 推荐(0)
摘要:var a = xxxxxxxx; if(typeof a == "number") { //a是数 } else if(typeof a == "string") { //a是字符串 } else if(typeof a == "undefined") { //a是未定义 } else if(typeof a == "boolean") { //a是bool变量... 阅读全文
posted @ 2018-12-24 15:22 無玑小姐 阅读(281) 评论(0) 推荐(0)
摘要:1,字符串中是否包含 2,数组中是否包含 阅读全文
posted @ 2018-12-24 15:00 無玑小姐 阅读(574) 评论(0) 推荐(0)
摘要:Map map = (Map) JSONUtils.parse(result) 阅读全文
posted @ 2018-12-24 14:06 無玑小姐 阅读(4501) 评论(0) 推荐(1)
摘要:一,准备 1,先查看Linux是32位还是64位 getconf LONG_BIT 如果返回的是32,那么就是32位 如果返回的是64,那么就是64位 2,如果服务器不能联网,就先去官网下载好压缩包,然后上传到服务器 下载地址:https://dev.mysql.com/downloads/mysq 阅读全文
posted @ 2018-12-24 11:24 無玑小姐 阅读(1205) 评论(0) 推荐(0)
摘要:1,格式化json对象 2,格式化json字符串 结果 阅读全文
posted @ 2018-12-20 17:55 無玑小姐 阅读(16240) 评论(1) 推荐(1)
摘要:2,模态框 点击1中的"API测试工具"即可打开弹窗 二,点击的先调用js方法判断是否要打开 1,点击按钮:相比一.1 去掉了[data-toggle="modal" data-target="#test"] 2,弹窗不变 3,在方法toApiTestPage()中 阅读全文
posted @ 2018-12-20 17:29 無玑小姐 阅读(5700) 评论(0) 推荐(0)
摘要:$('.disableCss').removeAttr('href');//去掉a标签中的href属性 $('.disableCss').removeAttr('onclick');//去掉a标签中的onclick事件 如果有data-toggle切换tab页的属性,需要增加一个$(".disabl 阅读全文
posted @ 2018-12-10 10:49 無玑小姐 阅读(3097) 评论(0) 推荐(0)