- 浏览: 88755 次
- 性别:
- 来自: 北京
最新评论
-
speed_guo:
分析的很仔细。
readonly,disabled,display区别
文章列表
/** 记录日志信息 */
private static final Logger logger = Logger.getLogger(AccTabService.class);
/**
* 用户信息更改比较
*
* @param o1
* new
* @param o2
* old
* @return 值相同true,不同false
*/
private boolean compareBaseAttribute ...
1> delete from a where exists (select null from b where b.id1=a.id1 and b.id2=a.id2)
delete from a where exists (select 1 from b where b.id1=a.id1 and b.id2=a.id2) 很多朋友喜欢这样写
2> delete a from a , b where a.id1 = b.id1 and b.id2=a.id2
3> delete from a left join b on a ...
新手入门:写Java程序的三十个基本规则
(1) 类名首字母应该大写。字段、方法以及对象(句柄)的首字母应小写。
对于所有标识符,其中包含的所有单词都应紧靠在一起,而且大写中间单词的首字母。例如:
ThisIsAClassName
...
Struts 2
Struts是Apache Jakarta的一个著名的开源项目,目标是为构建基于Java的web应用程序提供一个框架。
Struts提供了非常多的标签,依据功能和使用习惯的不同被分到了五个标签库中:
Bean Tags:该标签库包含的标签可以用来创建bean、访问bean和访问bean的属性。同时提供了依据cookies、headers和parameters的值创建相关bean的能力。
HTML Tags:该标签库包含的标签可以用来创建Struts输入表单。
Logic Tags:该标签库包含的标签可以用来进行逻辑判断 ...
<td align="center"><s:if test="auditUser==operate_user"
>
<a href="javascript:disapprove
('<s:property value='#iList.operate_object'/>','<s:property value='#iList.operate_subject'/>'
)">
<img src=" ...
Readonly只针对input(text /
password)和textarea有效,而disabled对于所有的表单元素都有效,包括select, radio, checkbox,
button等。但是表单元素在使用了disabled后,当我们将表单以POST或GET的方式提交的话,这个元素的值不会被传递出去,而
readonly会将该值传递出去(这种情况出现在我们将某个表单中的textarea元素设置为disabled或readonly,但是submit
button却是可以使用的)。
一般比较常用的情况是:
1.在某个表单中为用户预填了某个唯一识别代码,不允 ...
<html>
<head>
<script type="text/javascript">
function startTime()
{
var today=new Date()
var h=today.getHours()
var m=today.getMinutes()
var s=today.getSeconds()
// add a zero in front of numbers<10
m=checkTime(m)
s=checkTime(s)
document.getElementById('txt ...
<html>
<head>
<script type="text/javascript">
function disp_prompt()
{
var name=prompt("请输入您的名字","Bill Gates")
if (name!=null && name!="")
{
if(name=="jackssy"){
document.write("wondeful !& ...
//获取页面传过来的id
String result = request.getParameter("result");
//将值传给页面(jstl传值方式)
1. protected HttpServletRequest request;// request对象
public void setServletRequest(HttpServletRequest request) {
// TODO Auto-generated method stub
this.request = reques ...
页面jsp
<td><a href="javascript:void(0)"
onclick="OpenModalWindow('<c:out
value="${webapp}"/>/getOperateInfoByObj.action?operateAudit.operate_object=<s:property
value="#iList.operate_object"/>&subject='+encodeURIComponent('<s:prope ...
public static void main(String[] args) throws IOException {
try{
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet("new sheet");
HSSFCellStyle style = wb.createCellStyle(); //样式对象
style.setV ...
java.util.Date
compareTo
public int compareTo(Date anotherDate)
比较两个日期的顺序。
指定者:
接口 Comparable<date> 中的 compareTo
参数:
anotherDate - 要比较的 Date。
返回:
如果参数 Date 等于此 Date,则返回值 0;如果此 Date 在 Date 参数之前,则返回小于 0 的值;如果此 Date 在 Date 参数之后,则返 ...
通过 jQuery,您可以选取(查询,query) HTML 元素,并对它们执行“操作”(actions)。
jQuery 语法实例
$(this).hide()演示 jQuery hide() 函数,隐藏当前的 HTML 元素。
$("#test").hide()演示 jQuery hide() 函数,隐藏 id="test" 的元素。
$("p").hide() 演示 jQuery hide() 函数,隐藏所有 <p> 元素。
$(".test").hide() 演示 jQuery hide() ...
1.创建工作簿 (WORKBOOK)
HSSFWorkbook wb = new HSSFWorkbook();
FileOutputStream fileOut = new FileOutputStream("workbook.xls");
wb.write(fileOut);
fileOut.close();
2.创建工作表(SHEET)
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet1 = wb.createSheet("new sheet") ...
实现方式如下:
页面设计:
<td width="100" align="center"><a href="#" onclick="doExport();return false;" class="blue bold">导出内容到excel</a></td>
function doExport(){
var dataV=window.showModalDialog("<c:out value='${ctx}'/ ...