`
文章列表
页面如下 <!-- 加载jquery --> <script type="text/javascript" src="plugins/jquery/jquery-1.4.2.min.js"></script> <!-- 加载easyui -->   <script type="text/javascript" src="plugins/jquery/jquery-easyui-1.1.2/jquery.easyui.min.js"></sc ...
图片是easyui combox 文档的部分截图 alert("相似度为:"+$("#select_percent").combobox("getValue"));   如其中的onChange事件 $('#select_percent').combobox({ onChange:function(newValue,oldValue){ alert(newValue); load(newValue); } });  如其中的getValue方法 alert(" ...

easyui combox

当combox的值改变时触发,采用如下方式: 界面 <select id="select_percent" class="easyui-combobox" name="dept" style="width:60px;"> <option value="100">100%</option> <option value="90">90%</option> <option selec ...
错误 Struts Problem Report Struts has detected an unhandled exception: # Messages: antlr.collections.AST.getLine()I File: org/hibernate/hql/ast/HqlSqlWalker.java Line number: 915 Stacktraces java.lang.reflect.InvocationTargetException sun.reflect.NativeMethodAccessorImpl.invoke0(Nati ...
action层 @Controller @Scope("prototype") @SuppressWarnings("serial") public class UserAction extends CommonAction implements ModelDriven<MemoryUser>{ @Resource private UserService userService; private MemoryUser memoryUser=new MemoryUser(); //用户名是否重复的标识,“Y”标识重复,“N ...
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http:/ ...
非全部原创,部分内容来自: http://www.icediary.net/article.asp?id=268   一、集成ckeditor jsp文件 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ taglib uri="/struts-tags" prefix="s"%> <% String path = request.getContextPat ...
jsp集成ckeditor,在火狐下面显示正常,在ie下面一直报错误'lang.contextmenu.options' 为空或不是对象 网上查了下,是路径的问题 将 <script type="text/javascript" src="plugin/ckeditor/ckeditor.js"></script> 改为 <script type="text/javascript" src="<%=basePath%>/plugin/ckeditor/ckeditor.js& ...
ActionContext.getContext().getSession()   这个方法获得的不是HttpSession对象,而是一个Map对象。 要存值进去或者取值需要用以下方法 ActionContext.getContext().getSession().put("validateCode", s); ActionContext.getContext().getSession().get("validateCode")  以上方法和session.setAttribute();session.getAttribute();的作用 ...
一直出现上面的问题,配置检查了好多次,还是报同样的错误,无意中发现犯了一个低级的错误 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd"> <struts> <cons ...
Action图形验证码,代码来自互联网。 public String execute() throws Exception { try { int width = 50; int height = 18; // 取得一个4位随机字母数字字符串 String s = RandomStringUtils.random(4, true, true); // 保存入session,用于与用户的输入进行比较. // 注意比较完之后 ...
jdbc:mysql://localhost:3306/memoryDB?characterEncoding=utf-8    将jsp页面的编码都设置为UTF-8,mysql的字符集也设置为utf8,设置连接时使用的字符集为utf8,这样一般就不会出现乱码了
调用存储过程时浏览器几秒后假死,尝试很多次都是这样…… 打印输出结果发现有很长一段空白字符,使用trim()之后就可以正常显示了   Connection con=DB.getConnection(); CallableStatement oracleCallableStatement=con.prepareCall("begin ZXTAGL_SP_GETNEWCONSULTEDCST(?,?,?);end;"); oracleCallableStatement.setString(1,consulter); oracleCallableStatement.re ...
曾经在网上找了很多tomcat和iis集成,让iis承载tomcat的方法,试了好几次都没有成功……最后在老师的指引下,找到了一种更简单的方法,感叹一直死死的钻集成,为什么就没有想想有没有更简单的方法呢……不多说了,思想如下 在iis中运行一个简单的html网页,其中只需要加入一行代码跳转到tomcat中具体的项目上即可 只要多想复杂的事情也会变得简单,真理啊……
返回上一页面 function goBack() { window.history.back(-1); }  跳转到其他页面 转自:http://www.zhuoda.org/lunzi/66097.html 第一种: <script language="javascript" type="text/javascript"> window.location.href="login.jsp?backurl="+window.location.href; ...
Global site tag (gtag.js) - Google Analytics