摘要: function addRow() { var tab=document.getElementById("tab"); var n=document.getElementById("x").rowIndex+1; var tr=tab.insertRow(n); var td=tr.insertCe 阅读全文
posted @ 2020-06-17 10:55 北边那座城 阅读(853) 评论(0) 推荐(0) 编辑
摘要: function setRowData(obj){ var len=$(obj).parent().parent().find("input").length;//所在对象的parent即td,row的parent即tr,然后查找到所在行的所有input框 var inputValue=$(obj) 阅读全文
posted @ 2020-04-08 14:49 北边那座城 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 注:可能因为sqlserver版本较低,执行错误,只需要把函数中的空格去掉,自己重新添加即可。 1.自动生成拼音的自定义函数 SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO create function [dbo].[f_GetPinYin](@s 阅读全文
posted @ 2020-03-29 14:14 北边那座城 阅读(1625) 评论(1) 推荐(0) 编辑
摘要: 1.创建拦截类实现HandlerInterceptor import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.we 阅读全文
posted @ 2020-01-10 17:11 北边那座城 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1.在配置资源文件中 配置如下 spring.datasource.type=com.alibaba.druid.pool.DruidDataSource #SQLLITE #SQLLITE spring.datasource.sqlite.driver-class-name=org.sqlite. 阅读全文
posted @ 2019-12-26 18:42 北边那座城 阅读(1796) 评论(0) 推荐(0) 编辑
摘要: 1.把jar包导入到maven仓库 在同项目与pom.xml文件在同一级的位置按住ctrl+shift右击空白处,进入命令窗口 执行 mvn install:install-file -Dfile=D:\FineReport_8.0\WebReport\WEB-INF\lib\fr-core-8.0 阅读全文
posted @ 2019-12-26 18:37 北边那座城 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 在用户类实现序列化 阅读全文
posted @ 2019-12-26 18:30 北边那座城 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 部门名称 详细信息 操作 ${dept... 阅读全文
posted @ 2019-06-17 15:39 北边那座城 阅读(165) 评论(0) 推荐(0) 编辑
摘要: $(document).ready(function(){ $("#email").blur(function(){ var text = $("#email").val(); //获得用户输入的用户名 $.post("${pageContext.request.contextPath}/client/checkEmail.... 阅读全文
posted @ 2019-06-17 15:20 北边那座城 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 一对多 方法一 方法二 <resultMap type="Teacher" id="teacherMaps"> <id column="id" property="id"/> <result column="name" property="name"/> <result column="class_ 阅读全文
posted @ 2019-06-07 21:19 北边那座城 阅读(394) 评论(0) 推荐(0) 编辑