`
文章列表
转自:http://yaodaqing.iteye.com/blog/729936     方法一: 方法一:在C:\Tomcat\conf\server.xml中配置 <Host name="www.***.cn" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNam ...
<input type="radio" name="timeradio" id="timeradio" value="all"/> <input type="radio" name="timeradio" id="timeradio" value="my"/>  jquery获取的方式如下: var time=$(":radio[id='timeradio']:checked").val( ...
<td> <label> 用户名: </label> <s:textfield name="roleUserComman.username" id="username" size="32" theme="simple" value="%{roleUserComman.username}"></s:textfield> </td>  其实很简单,如 ...
<select id="simDegree" name="simDegree" class="easyui-combobox" name="dept" style="width:60px;"> <option value="100">100%</option> <option value="90">90%</option> <option selected val ...
<td> 学历: </td> <td> <select id="degree" name="roleUserComman.degree" style="width:113px;" class="easyui-combobox"> <s:if test="%{null==roleUserComman.degree}"><option value=null selected>请选择或输入</op ...
转自: http://blog.csdn.net/cd0425/archive/2009/11/19/4836803.aspx <package name="jsons" extends="json-default"> <action name="upFile" class="....."> <result type="json"> <param name=" ...
转自: http://qiufubin.blog.sohu.com/55457392.html     一.在tomcat_home\common\lib下放入jdbc的驱动程序,额外说一下,如果是使用sql server的话,有至少两个驱动可以选择,一个是微软提供的,另一个是 jtds,比微软的要好很多,推荐使用二.配置文件,tomcat 不同的版本配置文件略有不同,下面以tomcat5.5.*为例,如果配置不正确会出现javax.naming.NameNotFoundException: Name is not bound in this Context 错误   方式一、全局数 ...
$("#calculate").attr("disabled","disabled");  
$("#username").bind({ focusin:function(){ username=$(this).val(); //alert(username); }, focusout:function (){ if(null==username&&""==username) { //ajax判断用户名是否重复 $.ajax({ type:"POST", url:"isUse ...
//取消选择的照片 function canclePhoto() { $.messager.alert('提示', "您选择的图片将不会被上传!", 'tip'); //清空选择框的内容,兼容ie和火狐 var file=$("#theFile"); file.after(file.clone().val("")); file.remove(); $("#uploadWin").window("close"); }  代码来自互联网
转载自脚本之家     //检查用户上传的是否为照片 var regImg = new RegExp(/\.(gif|GIF|jpg|JPG|jpeg|JPEG)$/); var imgFile=$("#theFile").val(); if(null!=imgFile&&""!=imgFile) { if(!imgFile.match(regImg)) ...
 表中只有一个testDate字段,类型为Date 使用sql语句插入的方法如下: insert into test(testDate) values(to_date('2009-5-7 07:09:37','yyyy-mm-dd HH:MI:SS')); Model层中对应的字段类型也应该设置为Date     to_date('2002-10-22','yyyy-mm-dd') 这个也可以    
数据库中保存图片等的字段类型设置为blob 界面,上传窗口 <div id="uploadWin" class="easyui-window" title="My Window" closed="true"> <br> <strong>注意事项:</strong> <br> <div&g ...
预想使用focus等事件,考虑到浏览器不支持的缘故,便使用了 页面代码 <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + req ...
数据库中使用blob类型存放此类文件   界面 <input type="file" name="file" id="theFile"/>   action层 @SuppressWarnings("serial") @Controller @Scope("prototype") public class SystemAction extends ActionUtils implements ModelDriven<RoleUserComman> { @ ...
Global site tag (gtag.js) - Google Analytics