当前位置: 首页 > 图文教程 > 网络编程 > Javascript > jquery 常用操作方法

Javascript
Add a Table to a Word Document
Add Formatted Text to a Word Document
用jscript实现新建word文档
用jscript实现新建和保存一个word文档
Open and Print a Word Document
Use Word to Search for Files
Convert Seconds To Hours
Sample script that deletes a SQL Server database
Sample script that displays all of the users in a given SQL Server DB
firefox中用javascript实现鼠标位置的定位
div+css实现鼠标放上去,背景跟图片都会变化。
Locate a File Using a File Open Dialog Box
Save a File Using a File Save Dialog Box
用jscript实现列出安装的软件列表
List the Stored Procedures in a SQL Server database
Display SQL Server Login Mode
Display SQL Server Version Information
List all the Databases on a SQL Server
用jscript启动sqlserver
Stop SQL Server

Javascript 中的 jquery 常用操作方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-02-27   浏览: 440 ::
收藏到网摘: n/a

jquery 常用操作方法这样的文件软晨学习网发布的也比较多了,但每个人整理的不相同,大家可以参考软晨学习网之前的发布的文章结合一下比较好。 操作下拉列表
添加选项列表
$(this).get(0).options.add(new Option(text,value));
清空列表
$(this).get(0).options.length=0;
删除指定索引的选项
$(this).get(0).remove(index);
设定需要选中项的值
$(this).get(0).value=value;
获取当前选中选项的文本
$(this).get(0).options[index].text;
批量修改CSS
$(this).css({left:"35px",top:"24px"})
使指定区域内的元素不可使用(变灰)
$(this).find(*).each(function(){$(this).attr("disabled",true)});