摘要: 因为第二个在type=password下面会变成星号**** JS代码 HTML代码: 阅读全文
posted @ 2018-09-17 11:51 WhoKnows1 阅读(310) 评论(0) 推荐(0) 编辑
摘要: IE8存在的问题1、不支持forEach循环,建议用原生2、不建议jQuery9(ajax存在部分问题),建议用jQuery8/73、不支持伪类元素4、颜色,不完全支持RGBA(33, 132, 255, 1),建议使用#2184ff这种5、不支持圆角border-radius,需要使用css3pi 阅读全文
posted @ 2018-09-17 11:43 WhoKnows1 阅读(197) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-09-07 16:54 WhoKnows1 阅读(131) 评论(0) 推荐(0) 编辑
摘要: cd data/apps./ ps -ef | grep tomcatps -ef | grep desktopXXX ./shutdown.sh./shutdown.shkill -9 13410 cd bin/./startup.sh./startup.sh | tail -200f ../lo 阅读全文
posted @ 2018-09-07 16:48 WhoKnows1 阅读(109) 评论(0) 推荐(0) 编辑
摘要: log4j.xml src/main/resources <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE log4j:configuration PUBLIC "-//APACHE//DTD LOG4J 1.2//EN" "log4j.dtd"><l 阅读全文
posted @ 2018-08-30 21:18 WhoKnows1 阅读(783) 评论(0) 推荐(0) 编辑
摘要: ajax小技巧,防止多次点击发送多个请求 var isAjax=false;$("btn").click(function(){if(isAjax)return; isAjax=true;setTimeout(function(){alert(123);isAjax=false;},2000);}) 阅读全文
posted @ 2018-08-30 18:15 WhoKnows1 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 百度直接搜IP可以查看本机外网IP ipconfig在控制台查看的是内网IP 阅读全文
posted @ 2018-08-29 16:13 WhoKnows1 阅读(1085) 评论(0) 推荐(0) 编辑
摘要: 比如 contentType : 'application/json;charset=UTF-8', 或者 contentType : 'text/html;charset=UTF-8', 如果不加此参数,会出现不可预知的错误! 比如某些加了安全控件的系统,不加此参数,会直接报错403,系统认为你的 阅读全文
posted @ 2018-08-29 16:09 WhoKnows1 阅读(776) 评论(0) 推荐(0) 编辑
摘要: 表格某一行某一列超长 截取一部分 并增加...效果 增加titile <td title="+data.publisherVer">mc.subTheString(data.publisherVer,10)</td> mc.subTheString = function(str,length) { 阅读全文
posted @ 2018-08-15 10:02 WhoKnows1 阅读(314) 评论(0) 推荐(0) 编辑
摘要: mysq数据库管理工具navicat基本使用方法 https://www.cnblogs.com/neuedu/p/5876874.html 阅读全文
posted @ 2018-08-14 18:26 WhoKnows1 阅读(153) 评论(0) 推荐(0) 编辑