`
文章列表
对于表格文字溢出的定义: table{ width:30em; table-layout:fixed;/* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */ } td{ width:100%; word-break:keep-all;/* 不换行 */ white-space:nowrap;/* 不换行 */ overflow:hidden;/* 内容超出宽度时隐藏超出部分的内容 */ text-overflow:ellipsis;/* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用。*/ } 一般的文字截断(适用于内联与块) ...
通过HashSet踢除重复元素 Java代码 public   static   List  removeDuplicate(List list)  {       HashSet h  =   new  HashSet(list);       list.clear();       list.addAll(h);       return list;   } 循环list中的所有元素然后删除重复     public   static   List  removeDuplicate(List list)  {       for  ( int  i  =   0 ; i  ...
private int a ; 当数据库设为允许为空, 查询都会报错, 原因:数据库字段值为NULL,int 类型不能赋值为NULL,只能为0,但有些实际应用中,如学生分数,0表示0分,NULL,则表示暂无分数所以,要不设数据字段不为NULL,要不就是用Integer. 解决办法: javabean:      private int a ; 改为  private Integer a ;

ztree回显

$(document).ready(function(){ $.fn.zTree.init($("#treeDemo"), setting, zNodes);   //加载树 zTree_Menu = $.fn.zTree.getZTreeObj("treeDemo");    // 获取 zTree 对象,是一个全局变量,用户可以随时使用此方法获取需要进行操作的 zTree 对象 /*以下下为树的回显功能*/ var name =window.dialogArguments.form.name.value;  //取得父窗口要回 ...

得到父窗体

1. window.opener.document.getElementById("usernames").value=usernames 2. window.parent.document.getElementById("rtFrame").height=document.body.scrollHeight 3.this.contentWindow.document.body.scrollHeight 用window.showModalDialog 或者window.showModelessDialog打开一个模式窗口后,和父窗口的一些交互问题。 ...
list?size //得到集合对象个数 String?index_Of    //类似java的indexOf "abc"?index_Of("a");  
<input id="id" type="text"  /> jQuery( $("#id").attr("readonly":"readonly");    //添加readonly属性 & $("#ID").attr({ readonly: 'true' }); $("#id").removeAttr("readonly");    //去除readonly属性 );
/** * 上传图片(员工照片) * @return * @throws Exception */ public String loadImageToServer(String filePath,String serverPath) throws Exception { //String filePath=this.filePath; //String serverPath=ServletActionContext.getServletContext().getRealPath("/res_base/dxs_gov_cn_www/default/common ...
<script    language="javascript">      function    get_Element(the_ele,the_tag){      the_tag    =    the_tag.toLowerCase();      if(the_ele.tagName.toLowerCase()==the_tag)      return    the_ele;      while(the_ele=the_ele.offsetParent){      if(the_ele.tagName.toLowerCase()==t ...
select seq_person.nextval  from dual;
HttpServletRequest request = ServletActionContext.getRequest(); ComUser user = (ComUser) ActionContext.getContext().getSession().get("loginuser"); // 当前用户
是否全选中的代码 $("input[name='checkbox']").click(function(){ var de = $("input[name='checkbox']"); var num=0; for(i = 0; i < de.length; i++){ if(de[i].checked == true){ num++; } } if(num==de.length){ $("#checkboxAll").attr("checked&qu ...
我出现这个问题的时候是数据库连接没改对, 一个项目中有多个地方配置了数据库连接,没改全, 出现此类问题 An attempt by a client to checkout a Connection has timed out.
1、基本知识  showModalDialog() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持) window.showModalDialog()方法用来创建一个显示HTML内容的模态对话框。 window.showModelessDialog()方法用来创建一个显示HTML内容的非模态对话框。   2、使用方法 vReturnValue ...
a.html(父窗体)    js:         //显示树 $("#showTree").click(function(){ var url="showModalTree.action"; var ret = window.showModalDialog(url,'','dialogHeight=520px;dialogWidth=366px;scroll=no;center:yes;status:no;help:no;');           //接收从子窗体传过来的参数      if(ret!=null){ var va ...
Global site tag (gtag.js) - Google Analytics