zoukankan      html  css  js  c++  java
  • 备份

    1: sql语句中取值 

    String dztype=jdbcTemplate.queryForObject("select id from ld_dztype a where a.dz_name = ?", String.class,"已回");
     ldOrderRelation.setOrDztype(dztype);

    2:js 追加tr

     $('#addLdcReceiverShipperBtn').bind('click', function(){  
          var tr =  $("#add_ldcReceiverShipper_table_template tr").clone();//捞取模板
          $("#add_ldcReceiverShipper_table").append(tr);//追加
          resetTrNum('add_ldcReceiverShipper_table');
          return false;
        }); 

    3:
    初始化下标

    function resetTrNum(tableId) {

     $tbody = $("#"+tableId+"");
     $tbody.find('>tr').each(function(i){
      $(':input, select,button,a', this).each(function(){
       var $this = $(this), name = $this.attr('name'),id=$this.attr('id'),onclick_str=$this.attr('onclick'), val = $this.val();
       if(name!=null){
        if (name.indexOf("#index#") >= 0){
         $this.attr("name",name.replace('#index#',i));
        }else{
         var s = name.indexOf("[");
         var e = name.indexOf("]");
         var new_name = name.substring(s+1,e);
         $this.attr("name",name.replace(new_name,i));
        }
       }
       if(id!=null){
        if (id.indexOf("#index#") >= 0){
         $this.attr("id",id.replace('#index#',i));
        }else{
         var s = id.indexOf("[");
         var e = id.indexOf("]");
         var new_id = id.substring(s+1,e);
         $this.attr("id",id.replace(new_id,i));
        }
       }
       if(onclick_str!=null){
        if (onclick_str.indexOf("#index#") >= 0){
         $this.attr("onclick",onclick_str.replace(/#index#/g,i));
        }else{
        }
       }
      });
      $(this).find('div[name=\'xh\']').html(i+1);
     });
    }

    4:会话中获取使用者信息

     TSUser user = ResourceUtil.getSessionUser();
      String name = user.getUserName();

    5、下拉框属性

     <t:dgCol title="是否回单" field="orderPptype"    query="true" dictionary="shqsd"  width="120"></t:dgCol>

    字典表添加内容   dictionary="shqsd" 

  • 相关阅读:
    [导入]CodeSmith应用(二)
    [导入]WebService开发(一) 如何使用Soap头
    [导入]WebService开发(三)Web Service Software Factory
    [导入]CodeSmith应用(三)
    [导入]WebService开发(二) 如何使用Soap扩展
    [导入]WinForm下的Msn Popup
    [导入]Flex与Dotnet 之 WebService
    POJ 1243 One Person(经典DP)
    汇编的艺术(02)& operator
    数据结构练习(01)把二元查找树转变成排序的双向链表
  • 原文地址:https://www.cnblogs.com/xueblvip/p/12023167.html
Copyright © 2011-2022 走看看