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