上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 32 下一页
摘要: 简洁版 package com.xxx.xxx.platform.util; import java.io.OutputStream; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServle 阅读全文
posted @ 2020-11-18 11:49 爱跳舞的程序员 阅读(5599) 评论(0) 推荐(0) 编辑
摘要: <a href="javascript:void(0);" id="saveMyForm"><span>保存</span></a> $("#saveMyForm").click(function() { layer.prompt({ title : 'xxxx', btn:['yes','no'], 阅读全文
posted @ 2020-11-12 09:28 爱跳舞的程序员 阅读(2197) 评论(0) 推荐(0) 编辑
摘要: //js对象date的date.getDay()方法 function pFn(rq){ var d = convertDateFromString(rq); var weekday=new Array(7) /* weekday[0]="星期天"; weekday[1]="星期一"; weekda 阅读全文
posted @ 2020-11-12 09:13 爱跳舞的程序员 阅读(96) 评论(0) 推荐(0) 编辑
摘要: --授予dba权限 grant dba to userName --回收dba权限 revoke dba from userName --授予用户登录数据库的权限: grant create session to userName; --授予用户操作表空间的权限: grant unlimited t 阅读全文
posted @ 2020-11-11 10:54 爱跳舞的程序员 阅读(2943) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-11-10 19:19 爱跳舞的程序员 阅读(56) 评论(0) 推荐(0) 编辑
摘要: html代码 <a class="btn btn-primary fa fa-export" href="javascript:void(0);" onclick="expExcel()"><span>导出excel</span></a> js代码 function expExcel() { var 阅读全文
posted @ 2020-11-09 17:37 爱跳舞的程序员 阅读(316) 评论(0) 推荐(0) 编辑
摘要: //看红色部分代码即可function expExcel() { var ids=new Array(); $("input:checkbox:checked").each(function(){ ids.push($(this).attr("id")); }); if(ids.length==0) 阅读全文
posted @ 2020-11-09 17:17 爱跳舞的程序员 阅读(1841) 评论(0) 推荐(0) 编辑
摘要: package com.xxx.util; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFCellStyle; import org.apache.poi.hssf.us 阅读全文
posted @ 2020-11-09 17:07 爱跳舞的程序员 阅读(243) 评论(0) 推荐(0) 编辑
摘要: @charset "utf-8"; /* CSS Document */ /* *用途:表格模板CSS */ html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,a,big,del,em,font,img,strong,sub,sup,tt,va 阅读全文
posted @ 2020-11-06 11:59 爱跳舞的程序员 阅读(69) 评论(0) 推荐(0) 编辑
摘要: JdbcTemplate简介 Spring对数据库的操作在jdbc上面做了深层次的封装,使用spring的注入功能,可以把DataSource注册到JdbcTemplate之中。 JdbcTemplate位于spring-jdbc-4.3.0.RELASE.jar中。其全限定命名为org.sprin 阅读全文
posted @ 2020-11-05 11:20 爱跳舞的程序员 阅读(132) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 32 下一页