日期:2014-05-16  浏览次数:20357 次

DWR util.js 学习笔记

DWR? util.js 学习笔记
/********************/

/********************/
util.js包含一些有用的函数function,用于在客户端页面调用.
主要功能如下:

Java代码 复制代码
  1. 1 、$()?获得页面参数值 ??
  2. 2 、addOptions?and?removeAllOptions?初始化下拉框 ??
  3. 3 、addRows?and?removeAllRows??填充表格 ??
  4. 4 、getText??取得text属性值 ??
  5. 5 、getValue?取得form表单值 ??
  6. 6 、getValues?取得form多个值 ??
  7. 7 、onReturn?? ??
  8. 8 、selectRange ??
  9. 9 、setValue ??
  10. 10 、setValues ??
  11. 11 、toDescriptiveString ??
  12. 12 、useLoadingMessage ??
  13. 13 、Submission?box??
1、$() 获得页面参数值
2、addOptions and removeAllOptions 初始化下拉框
3、addRows and removeAllRows  填充表格
4、getText  取得text属性值
5、getValue 取得form表单值
6、getValues 取得form多个值
7、onReturn  
8、selectRange
9、setValue
10、setValues
11、toDescriptiveString
12、useLoadingMessage
13、Submission box



*********************************************************************
//////////////////////http://blog.163.com/fzfx888//////////////////////////
*********************************************************************

Java代码 复制代码
  1. 1 、$()函数 ??
  2. ??IE5. 0 ?不支持 ??
  3. ??$?=?document.getElementById ??
  4. ??取得form表单值 ??
  5. ??var?name?=?$( "name" );??
1、$()函数
  IE5.0 不支持
  $ = document.getElementById
  取得form表单值
  var name = $("name");


***********************************************************************************
///////////////////////////////////////////////////////////////////////////////////
***********************************************************************************
2、用于填充 select 下拉框 option

Java代码 复制代码
  1. a、如果你想在更新select?时,想保存原来的数据,即在原来的select中添加新的option: ??
  2. ????var?sel?=?DWRUtil.getValue(id); ??
  3. ????DWRUtil.removeAllOptions(id); ??
  4. ????DWRUtil.addOptions(id,...); ??
  5. ????DWRUtil.setValue(id,sel); ??
  6. ????demo:比如你想添加一个option:“--请选择--” ?