Fork me on GitHub
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 30 下一页
摘要: 1 function viewToExcel(){ 2 var filepath = "f:\\PrinterExcel.xls"; 3 var xlApp; 4 var xlBook; 5 var xlSheet; 6 ... 阅读全文
posted @ 2015-09-27 02:01 郑斌blog 阅读(539) 评论(0) 推荐(0) 编辑
摘要: 1 var curWwwPath=window.document.location.href; 2 //获取主机地址之后的目录,如: uimcardprj/share/meun.jsp3 var pathName=window.document.location.pathname;4... 阅读全文
posted @ 2015-09-24 16:56 郑斌blog 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 你好print("你好。")haode 阅读全文
posted @ 2015-09-15 11:06 郑斌blog 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 筛选器 ->http://blog.csdn.net/lijinwei112/article/details/6938134 常用到的:$("tr[id=ac_"+id+"]").show();$(":checkbox[name=select_" + id + "_checkbox][check... 阅读全文
posted @ 2015-09-15 10:53 郑斌blog 阅读(517) 评论(0) 推荐(0) 编辑
摘要: function firm_back_state(id,name){ if(confirm("确认返单?")){ location.href="Edit_OrderServlet?method=delete&id="+id+"&in="+name; }else { ... 阅读全文
posted @ 2015-09-13 20:52 郑斌blog 阅读(4010) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://blog.csdn.net/lijinwei112/article/details/6938134筛选器中加入变量var ac = "select_" + checkBox_val + "_checkbox";$('input[id*='+ac+']').each(functi... 阅读全文
posted @ 2015-09-12 11:15 郑斌blog 阅读(537) 评论(0) 推荐(0) 编辑
摘要: //判断是否是正整数function IsNum(s){ if(s!=null){ var r,re; re = /\d*/i; //\d表示数字,*表示匹配多个数字 r = s.match(re); return (r==s)?true... 阅读全文
posted @ 2015-09-10 18:11 郑斌blog 阅读(1649) 评论(0) 推荐(0) 编辑
摘要: 应客户的需求= = ,要在网页端实现打印小票的功能 先来一张打印出的小票效果图(合计明显不对,因为有修改订单功能,请各位忽略) 用什么方法实现呢: 我想应该是有三种吧 1.用第三方的浏览器控件(这个好似比较方便,我的老师也是这样建议我)向大家推荐一个 Lodop打印控件 2.用CSS写好模板,然后直 阅读全文
posted @ 2015-09-08 10:38 郑斌blog 阅读(30474) 评论(23) 推荐(9) 编辑
摘要: 1 public void List_Test(){ 2 Listlist = new ArrayList(); 3 for(int i = 0;i iter = list.iterator();19 while(iter.hasNext()){20... 阅读全文
posted @ 2015-09-08 08:30 郑斌blog 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 导入打开终端输入:(前提是已经配置过MySQL环境变量)mysql -u root -pcreate database name;use name;source 『将.sql文件直接拖拽至终端,自动补全其文件目录』导出打开『终端』输入:cd 『打开要将.sql文件生成的文件位置』mysqldump ... 阅读全文
posted @ 2015-08-22 11:43 郑斌blog 阅读(15813) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 30 下一页