日期:2014-05-16 浏览次数:20357 次
DWR? util.js 学习笔记
/********************/
/********************/
util.js包含一些有用的函数function,用于在客户端页面调用.
主要功能如下:
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//////////////////////////
*********************************************************************
1、$()函数 IE5.0 不支持 $ = document.getElementById 取得form表单值 var name = $("name");
***********************************************************************************
///////////////////////////////////////////////////////////////////////////////////
***********************************************************************************
2、用于填充 select 下拉框 option