最近在项目中遇到一个页面展示的问题,我在做一个查询结果的展示页面,页面要的效果如下:查询出来默认展示的列表为VPDJ开头的那些数据,然后通过点击对应的VPDJ号,展示其对应的SJSD的数据。我的做法是把所有数据都默认查询出来展示好,然后给SJSD开头的对应的表格所有的上加style="display...
分类:
其他好文 时间:
2015-05-28 12:11:18
阅读次数:
2437
session语法:public void setAttribute(String name,Object value);用法:session.setAttribute(" name","value");语法:public void getAttribute(String name,Object v...
分类:
移动开发 时间:
2015-05-25 20:14:33
阅读次数:
165
JavaBean在JSP中的局限
获取JavaBean属性必须要实例化
强制类型转化
<%
Employee employee = (Employee)request.getAttribute("employee");
Computer comp = employee.getComputer();
String manufacturer = comp.getMa...
分类:
Web程序 时间:
2015-05-23 14:19:39
阅读次数:
133
JavaBean在JSP中的局限
获取JavaBean属性必须要实例化
强制类型转化
<%
Employee employee = (Employee)request.getAttribute("employee");
Computer comp = employee.getComputer();
String manufacturer = comp.getMa...
分类:
编程语言 时间:
2015-05-23 11:33:33
阅读次数:
149
修改js脚本文件:在函数verifyNodeDataType里增加:if(Node.getAttribute("datatype")==‘english‘){
if(!issbccase(v)){
if(Node.getAttribute(‘name‘)!=null){
if(v.toString().trim()==‘‘&&Node.getAttribute(‘name‘)==‘empty‘)
returntrue;
}
if(Node.getAttribut..
分类:
其他好文 时间:
2015-05-21 12:56:16
阅读次数:
192
W3C 提供了比较方便简单的定位节点的方法和属性,以便我们快速的对节点进行操作。分别为:getElementById()、getElementsByTagName()、getElementsByName()、getAttribute()、setAttribute()和 removeAttribute...
分类:
编程语言 时间:
2015-05-20 20:19:38
阅读次数:
218
由于在spring的源码中可以看到的是, String?location?=?element.getAttribute("location");
if?(StringUtils.hasLength(location))?{
String[]?locations?=?StringUtils.commaDelimitedListToStringArr...
分类:
编程语言 时间:
2015-05-18 13:12:56
阅读次数:
134
request.getAttribute()大家不陌生吧,通产我们都是通过这个来接收界面传过来的参数的,但是你有没想过如果接收参数比较多,比较乱的时候你还用它么,有没有其他更好的方法呢? 原本想自己封装一个map方法传值,通...
分类:
其他好文 时间:
2015-05-17 20:25:11
阅读次数:
94
num=(String)session.getAttribute(day);1.session要进行强制转换才可以赋值2.session.getAttribute(day)里的day应该是字符串错误: DBResult rst=new DBResult();这句报错Default construc....
分类:
数据库 时间:
2015-05-14 20:06:15
阅读次数:
162
HttpServletRequest.getParameter("modelName"); 能取到想要的modelObject吗?经过测试之后,发现是不能的。后来想想,其他道理挺简单的,当两个Web组件之间为转发关系时,转发源会将要共享 request范围内的数据先用setAttribute将数据放...
分类:
其他好文 时间:
2015-05-14 17:53:20
阅读次数:
120