- 浏览: 443221 次
- 性别:
- 来自: 苏州
最新评论
-
huguyue1988:
怎么样可以判断访问的音乐加载完成了呢?我的界面要加载多个这个的 ...
jPlayer的一些用法 -
永不悔你:
[color=yellow][/c[*][img][/img] ...
MyEclipse 9.0运行速度优化 -
tianyalinfeng:
这个教程里都有吧
jquery 筛选器 -
mengfei86:
你太牛了,我找了半天的问题,你一句代码搞定了,谢了,id^, ...
jquery 筛选器
文章列表
final DetachedCriteria detachedCrit = DetachedCriteria .forClass(Query.class); List<Query> list = getHibernateTemplate().execute( new HibernateCallback() { public List doInHibernate(Session session) throws HibernateException { Criteria criteria = detachedCrit .getEx ...
user.username
user.password
通过表单提交到action里User对象
但action跳转到另一个页面后${user.username}取不到值
必须在跳转之前将user再次加入ActionContext里
ActionContext ac = ActionContext.getContext();ac.getSession().put("user", user);
struts2 if
- 博客分类:
- Struts
<s:if test="%{#attr.user.username!=null}">${user.username}</s:if><s:else><script type='text/javascript'>top.location='login.jsp';</script></s:else>
这里一定要用%{#attr.user.username!=null}这个格式来判断,要加上attr,其他格式的判断结果都不对
body { font: normal 11px auto "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; color: #4f6b72; background: #E6EAE9;}
a { color: #c75f3e;}
#mytable { width: 700px; padding: 0; margin: 0;}
caption { padding: 0 0 5px 0; width: 700px; font: italic 11px "Trebuchet MS", Verdan ...
struts iterator
- 博客分类:
- Struts
action
List<User> list;
要有get,set方法
jsp中用法
<s:iterator value="list" id='user'>
<span id="<s:property value='#user.username' />"><s:property value='#user.username' /></span>
<s:property value='#user.password' />
</s:iterator> ...
jquery弹出层里的文本框无法输入内容
- 博客分类:
- Jquery
$("#div_test").html("<input type='text'/>");
用上面代码弹出的div里的input无法输入内容(不是所有的浏览器都这样)
原因是部分浏览器里无法获取动态添加的文本框的焦点,所以必须要在上面代码下面添加以下代码
$("input").click(function(){$(this).focus();});
jquery-ui sortable用法
- 博客分类:
- Jquery
所有的事件回调函数都有两个参数:event和ui,浏览器自有event对象,和经过封装的ui对象 ui.helper - 表示sortable元素的JQuery对象,通常是当前元素的克隆对象 ui.position - 表示相对当前对象,鼠标的坐标值对象{top,left} ui.offset - 表示相对于当前页面,鼠标的坐标值对象{top,left} ui.item - 表示当前拖拽的元素 ui.placeholder - 占位符(如果有定义的话) ui.sender - 当前拖拽元素的所属sortable对象(仅当元素是从另一个sortable对象传递过来时有用) ...
控制div里面span的间距
- 博客分类:
- Html
<div style='border:#E4EDF8 1px solid;padding:5px;line-height:30px;'>
<span style='margin:5px;'></span>
<span style='margin:5px;'></span>
<span style='margin:5px;'></span><br/>
<span style='margin:5px;'></span>
<span st ...
Words of flowers
- 博客分类:
- English
(Red)Rose - Desire
Aloe - Friendship
Daisy - Innocence
(Striped)Carnation - Faithfulness
(Yellow)Rose - Beauty
(Orange)Lily - True Love
(Blue)Violet - Grief
(Yellow)Tulip - Refusal
Orchid - Uncertainty
Daffodil - Hopeless Love
struts2 提交到action里的数据即使在浏览器关掉也不会清除
因此需要在execute函数里用完这些数据后自行清理一些数据
如设置username=null;等
否则会出现错误
例如当系统退出后直接在浏览器请求login,系统仍然可以登录,因为原来的用户名,密码等数据仍然存在于该action类里,并没有被清理掉,这就导致不需要输入用户名密码也能登录系统
frameset里让顶层窗口跳转
- 博客分类:
- Js
top.location="xxx.jsp";
让父窗口跳转
window.parent.location="xxx.jsp";
数组转为Set或List
- 博客分类:
- Java
String[] strs = {"ace", "boom", "crew", "dog", "eon";
Set<String> set= new HashSet<String>();Collections.addAll(set, strs );
转为list也可以用上面方法,同时还可以用
List<String> list= Arrays.asList(strs);
参考:http://www.chahushequ.com/read.bb ...
Dijkstra最短路径算法
http://baike.baidu.com/view/7839.htm
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING , RenderingHints.VALUE_ANTIALIAS_ON);
去掉锯齿可以使画出来的线条更平滑美观
java程序生产的图片流输出到jsp在火狐中显示IE中不显示
原因
1.老的浏览器只对RGB模式的图片支持较好
2.看下程序里面是否有如下代码,它可能改变了RGB模式
BufferedImage bi = g2.getDeviceConfiguration().createCompatibleImage(width, height, Transparency.TRANSLUCENT);