摘要: selectpicker依赖bootstrap,bootstrap依赖jquery <!DOCTYPE html> <html lang=""> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE= 阅读全文
posted @ 2019-06-04 17:11 decrypt 阅读(4384) 评论(0) 推荐(1) 编辑
摘要: HTML (使用了bootstrap3样式) JS Java(springmvc) 阅读全文
posted @ 2019-05-28 18:21 decrypt 阅读(1185) 评论(0) 推荐(0) 编辑
摘要: 我这里选择的是豆瓣:http://pypi.douban.com/simple/ 然后有错误信息意思大概为不安全的错误的话 windows:文件夹窗口输入 %APPDATA% ,在当前文件夹下新建名为 pip 的文件夹,在pip文件夹下新建 pip.ini文件,文件内容如下 阅读全文
posted @ 2019-05-27 17:18 decrypt 阅读(5351) 评论(0) 推荐(0) 编辑
摘要: 1.在root权限下,修改root密码 passwd root 2.进入文件夹 cd xxx 3.查看文件内容 cat xxx 4.与windows交互 yum install lrzsz 安装lrzsz sz xxx 下载 rz 上传 5.设置环境变量(永久有效) vim /etc/profile 阅读全文
posted @ 2019-05-13 16:41 decrypt 阅读(317) 评论(0) 推荐(0) 编辑
摘要: jQuery.parent(expr) //找父元素 jQuery.parents(expr) //找到所有祖先元素,不限于父元素 jQuery.children(expr) //查找所有子元素,只会找到直接的孩子节点,不会返回所有子孙 jQuery.contents() //查找下面的所有内容,包 阅读全文
posted @ 2019-05-13 11:18 decrypt 阅读(11289) 评论(0) 推荐(0) 编辑
摘要: 1.隐藏元素不占页面位置 $(obj).hide() $(obj).show() 2.隐藏元素占页面位置 $(obj).css("visibility","hidden"); $(obj).css("visibility","visible"); 阅读全文
posted @ 2019-05-13 10:34 decrypt 阅读(2090) 评论(0) 推荐(0) 编辑
摘要: css3实现loading效果:https://www.cnblogs.com/lianghong/p/8057676.html css3实现loading水平垂直居中 .loading{ width: 80px; height: 80px; position: absolute; z-index: 阅读全文
posted @ 2019-05-08 15:32 decrypt 阅读(661) 评论(0) 推荐(0) 编辑
摘要: shiro注解权限控制-5个权限注解 使用方法:Shiro的认证注解处理是有内定的处理顺序的,如果有个多个注解的话,前面的通过了会继续检查后面的,若不通过则直接返回,处理顺序依次为(与实际声明顺序无关): 例如:你同时声明了RequiresRoles和RequiresPermissions,那就要求 阅读全文
posted @ 2019-04-17 18:03 decrypt 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 下图为shiro标签库中定义的方法: 接下来,让我为大家详细解析一下shiro标签的具体作用: 1.shiro:authenticated (表示已认证通过,但不包括remember me登录的) 说明:只有已通过用户认证,但不是通过记住我(remember me)浏览才会看到标签内的内容 2.sh 阅读全文
posted @ 2019-04-17 17:55 decrypt 阅读(547) 评论(0) 推荐(0) 编辑
摘要: pom.xml 1.2.2 org.apache.shiro shiro-core ${shiro.version} org.apache.shiro shiro-we... 阅读全文
posted @ 2019-04-17 09:27 decrypt 阅读(1052) 评论(0) 推荐(1) 编辑