上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 32 下一页
摘要: 第一步:web.xml添加servlet配置 <servlet> <servlet-name>ValidCode</servlet-name> <servlet-class>com.xxx.core.web.servlet.ValidCode</servlet-class> </servlet> < 阅读全文
posted @ 2019-05-15 15:30 爱跳舞的程序员 阅读(119) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2019-05-10 15:46 爱跳舞的程序员 阅读(79) 评论(0) 推荐(0)
摘要: function handleLine() { var rq = $("input[name='rq']").val(); var params = { rq: rq }; $.ligerDialog.open({ url: __ctx + "/xx/jj/xx/list.ht?rq=" + rq, 阅读全文
posted @ 2019-05-08 17:42 爱跳舞的程序员 阅读(243) 评论(0) 推荐(0)
摘要: //在子页面写onunload方法 window.onunload=function(){ //刷新父页面 window.opener.reload(); } window.location.reload(); //刷新当前页面. parent.location.reload(); //刷新父亲对象 阅读全文
posted @ 2019-05-08 17:38 爱跳舞的程序员 阅读(117) 评论(0) 推荐(0)
摘要: <select onclick="selectData(this)"> <option value="" >--参考名称--</option> <c:forEach items="${allSimpleLineName }" var="name"> <option value="${name}" > 阅读全文
posted @ 2019-05-08 17:30 爱跳舞的程序员 阅读(729) 评论(0) 推荐(0)
摘要: <a class="link " style="float: right;" id="closeMyWin" onclick="closeMyWin()"><span></span>关闭</a> <script type = "text/javascript" > function closeMyW 阅读全文
posted @ 2019-05-08 17:27 爱跳舞的程序员 阅读(188) 评论(0) 推荐(0)
摘要: /** * 读取workbook数据,根据title找到实体类对应属性,并通过反射处理,生成有数据的实体类最终封装成list集合(wb传换成list集合) * 适用场景:excel 第一行为标题,第二行开始是数据那种 * @throws Exception */ public void import 阅读全文
posted @ 2019-04-29 11:08 爱跳舞的程序员 阅读(227) 评论(0) 推荐(0)
摘要: 不但充当全局作用域,而且表示浏览器窗口。 window对象有innerWidth和innerHeight属性,可以获取浏览器窗口的内部宽度和高度。内部宽高是指除去菜单栏、工具栏、边框等占位元素后,用于显示网页的净宽高。 还有一个outerWidth和outerHeight属性,可以获取浏览器窗口的整 阅读全文
posted @ 2019-04-28 16:14 爱跳舞的程序员 阅读(172) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <link href="../skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" / 阅读全文
posted @ 2019-04-28 16:06 爱跳舞的程序员 阅读(862) 评论(0) 推荐(0)
摘要: "window.location.href"、"location.href"是本页面跳转. "parent.location.href" 是上一层页面跳转. "top.location.href" 是最外层的页面跳转. 举例说明: 如果A,B,C,D都是html,D是C的iframe,C是B的ifr 阅读全文
posted @ 2019-04-28 15:56 爱跳舞的程序员 阅读(2937) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 32 下一页