- 浏览: 13491 次
- 性别:
- 来自: 北京
最新评论
文章列表
1,样式导入<link href="${basePath}/mgr/skinstyle/default/css/module.css rel="stylesheet" type="text/css" />
2,<body style="overflow-y: hidden ;">隐藏垂直方向滚动条。
3,action重定向
function showTrade(){ var action = "${basePath}"+document.getElementById( ...
alert EL表达式 需要单引号
alert('${ReturnValue.info}');
隐藏之后仍占用空位。
document.getElementById("user").style.visibility="visible";
document.getElementById("user").style.visibility="hidden";
隐藏之后不会占用空位
document.getElementById("jsy1").style.display="none";
document.getElementById("jsy1"). ...
<td><input type="button" onclick="next(document.zm)"></td>//zm为form中 name="zm"
<script language="JavaScript">
function next(theForm){
var flag=true;
flag=vidate(theForm);
theForm.action="www.baidu.action"//url重定向 ...
Null value was assigned to a property of primitive type setter of gnnt.MEBS.espot.mgr.model.delivery,报这个错误是hibernate 字段 设置成int 或long型,而数据库设置成可为空,该数据在数据库为空。第一种该法,把该字段设置成不可为空。第二种该法,实体类改成 private Integer beforeId; hibernate 改成 同理,long改成Long