摘要:
在web.xml最后加入如下节点 <!--禁用PUT/DELETE请求 --> <security-constraint> <web-resource-collection> <url-pattern>/*</url-pattern> <http-method>PUT</http-method> < 阅读全文
摘要:
1、首先定义文件夹命名为“mainifest” 2、进入文件夹创建文件mainifest.json,此文件为插件主配置文件 { "name": "Flutter", "manifest_version": 2, "version": "1.0", "description": "I Love cod 阅读全文
摘要:
//调用百度语音接口需联网 http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=5&text='你好' //js调用客户端语音功能,无需联网,亲测IE8可用 //初始化ActiveX插件,并创建隐藏域,此种方法需打开IE ActiveX功能,启用 阅读全文
摘要:
webapps/ROOT/index.jsp 在html前增加重定向 response.sendRedirect("CMS"); 阅读全文
摘要:
<!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 阅读全文
摘要:
//键盘回车事件,执行登录 $(document).keyup(function(event) { if (event.keyCode == 13) { $("#login").trigger("click"); } }); 阅读全文
摘要:
input:-webkit-autofill {-webkit-box-shadow: 0 0 0 1000px white inset !important;} 阅读全文
摘要:
//勾选框<div style="float: right; padding-right: 10%;"> <div style="float: left; margin-top: 3px; margin-right: 2px;"> <font color="white">记住密码</font> </ 阅读全文
摘要:
原因 button,input type=button按钮在IE和w3c,firefox浏览器区别: 1、当在IE浏览器下面时,button标签按钮,input标签type属性为button的按钮是一样的功能,不会对表单进行任何操作。 2、但是在W3C浏览器,如Firefox下就需要注意了,butt 阅读全文
摘要:
--引入js/css <link rel="stylesheet" type="text/css" href="https://www.js-css.cn/jscode/date/date4/css/pikaday.css"/> <script type="text/javascript" src= 阅读全文