上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: 1、首先定义文件夹命名为“mainifest” 2、进入文件夹创建文件mainifest.json,此文件为插件主配置文件 { "name": "Flutter", "manifest_version": 2, "version": "1.0", "description": "I Love cod 阅读全文
posted @ 2018-07-15 16:34 蓝色土耳其 阅读(271) 评论(0) 推荐(0) 编辑
摘要: //调用百度语音接口需联网 http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=5&text='你好' //js调用客户端语音功能,无需联网,亲测IE8可用 //初始化ActiveX插件,并创建隐藏域,此种方法需打开IE ActiveX功能,启用 阅读全文
posted @ 2018-07-15 16:17 蓝色土耳其 阅读(448) 评论(0) 推荐(0) 编辑
摘要: webapps/ROOT/index.jsp 在html前增加重定向 response.sendRedirect("CMS"); 阅读全文
posted @ 2018-07-09 09:31 蓝色土耳其 阅读(5461) 评论(0) 推荐(0) 编辑
摘要: <!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 @ 2018-06-12 19:11 蓝色土耳其 阅读(135) 评论(0) 推荐(0) 编辑
摘要: //键盘回车事件,执行登录 $(document).keyup(function(event) { if (event.keyCode == 13) { $("#login").trigger("click"); } }); 阅读全文
posted @ 2018-05-28 17:33 蓝色土耳其 阅读(132) 评论(0) 推荐(0) 编辑
摘要: input:-webkit-autofill {-webkit-box-shadow: 0 0 0 1000px white inset !important;} 阅读全文
posted @ 2018-05-22 11:30 蓝色土耳其 阅读(110) 评论(0) 推荐(0) 编辑
摘要: //勾选框<div style="float: right; padding-right: 10%;"> <div style="float: left; margin-top: 3px; margin-right: 2px;"> <font color="white">记住密码</font> </ 阅读全文
posted @ 2018-05-22 11:13 蓝色土耳其 阅读(1387) 评论(1) 推荐(1) 编辑
摘要: 原因 button,input type=button按钮在IE和w3c,firefox浏览器区别: 1、当在IE浏览器下面时,button标签按钮,input标签type属性为button的按钮是一样的功能,不会对表单进行任何操作。 2、但是在W3C浏览器,如Firefox下就需要注意了,butt 阅读全文
posted @ 2018-05-22 11:02 蓝色土耳其 阅读(243) 评论(0) 推荐(0) 编辑
摘要: --引入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= 阅读全文
posted @ 2018-05-04 10:19 蓝色土耳其 阅读(273) 评论(0) 推荐(0) 编辑
摘要: public static int byteNum(String str) { int m = 0; char arr[] = str.toCharArray(); for(int i=0;i<arr.length;i++) { char c = arr[i]; if((c >= 0x0391 && 阅读全文
posted @ 2018-04-08 11:45 蓝色土耳其 阅读(688) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页