项目小问题-----解决方法
ccclych1
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
自定义格式上传文件
js部分: $('#btn-up').click(function (){ $('#checkfile-upload').click(); }); $('#checkfile-upload').on('change',function(){ var checkPlanId=$("#checkPlanI...原创 2019-04-04 16:03:02 · 451 阅读 · 0 评论 -
使用Map 达到使用需要数据进行sql查询
Map map = new HashMap(); String attachId=request.getParameter("attachId"); String specialId=specialTask.getId(); map.put("attachId",attachId); map.put("specialId",specialId); specialTaskService.myup...原创 2019-03-22 11:04:47 · 1708 阅读 · 0 评论 -
电话校验问题---失败不提交
<html> <head> <title>Title</title> <script type="text/javascript"> function checkTel(){ var mytel=document.getElementById('telphone'); ...原创 2019-03-18 15:34:35 · 346 阅读 · 0 评论 -
使 select 文字居中
select { text-align: center; text-align-last: center; }原创 2019-03-14 10:55:49 · 161 阅读 · 0 评论 -
有关form:select的内容
常用格式: <form:select path="dangerRelationTypeCode" class="input-medium required"> <form:options items="${fns:getDictList('hiddenTroubleRelationship')}" itemLabel="label" item...原创 2019-03-11 15:54:08 · 5473 阅读 · 2 评论 -
妙用 redirect
作用:从一个@RequestMapping 中存储的数据传到另一个@RequestMapping 中 使用手段:RedirectAttributes和@ModelAttribute 一个栗子: @RequiresPermissions("quota:quotaSystem:edit") @RequestMapping(value = "delete") public String d...原创 2019-03-08 17:01:12 · 358 阅读 · 0 评论
分享