代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Js
】
操作Select的Option上下移动及移除添加
作者:
瑕
/ 发布于
2016/9/6
/
891
jQuery操作Select Option:向上移动选中的option、向下移动选中的option、移除选中的option、获取所有的option值、添加option等等
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> <script type="text/javascript" src="jquery-1.9.1.min.js"></script> <script type="text/javascript"> /** * 向上移动选中的option */ function upSelectedOption(){ if(null == $('#where').val()){ alert('请选择一项'); return false; } //选中的索引,从0开始 var optionIndex = $('#where').get(0).selectedIndex; //如果选中的不在最上面,表示可以移动 if(optionIndex > 0){ $('#where option:selected').insertBefore($('#where option:selected').prev('option')); } } /** * 向下移动选中的option */ function downSelectedOption(){ if(null == $('#where').val()){ alert('请选择一项'); return false; } //索引的长度,从1开始 var optionLength = $('#where')[0].options.length; //选中的索引,从0开始 var optionIndex = $('#where').get(0).selectedIndex; //如果选择的不在最下面,表示可以向下 if(optionIndex < (optionLength-1)){ $('#where option:selected').insertAfter($('#where option:selected').next('option')); } } /** * 移除选中的option */ function removeSelectedOption(){ if(null == $('#where').val()){ alert('请选择一项'); return false; } $('#where option:selected').remove(); } /** * 获取所有的option值 */ function getSelectedOption(){ //获取Select选择的Text var checkText = $('#where').find('option:selected').text(); //获取Select选择的Value var checkValue = $('#where').val(); alert('当前被选中的text=' + checkText + ', value=' + checkValue); var ids = ''; var options = $('#where')[0].options; for(var i=0; i<options.length; i++){ ids = ids + '`' + options[i].id; } alert('当前被选中的编号顺序为' + ids); } /** * 添加option */ function addSelectedOption(){ //添加在第一个位置 $('#where').prepend('<option value="hbin" id="where06">Haerbin</option>'); //添加在最后一个位置 $('#where').append('<option value="hlj" id="where07">HeiLongJiang</option>'); $('#where').attr('size', 7); } </script> <div id="updown"> <select id="where" name="where" size="5"> <option value="hk" id="where01">Hong Kong</option> <option value="tw" id="where02">Taiwan</option> <option value="cn" id="where03">China</option> <option value="us" id="where04">United States</option> <option value="ca" id="where05">Canada</option> </select> </div> <br/> <input type="button" value="上移" onclick="upSelectedOption()"/> <input type="button" value="下移" onclick="downSelectedOption()"/> <input type="button" value="删除" onclick="removeSelectedOption()"/> <input type="button" value="确定" onclick="getSelectedOption()"/> <input type="button" value="添加" onclick="addSelectedOption()"/>
试试其它关键字
同语言下
.
Jquery搜索框获取回车事件
.
H5页面添加倒计时,然后自动跳转
.
通过user-agent判断h5页面是在哪个手机App(QQ、微信
.
nginx 禁止未绑定的域名访问
.
JavaScript 获取按键,并屏蔽系统 Window 事件
.
H5之只允许微信浏览器打开,禁止从外部浏览器访问
.
微信打开网址添加在浏览器中打开提示的办法
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
video视频播放,play()、pause()、duration时长、onen
.
HTML5实现MP3上传前的预览和播放时长的获取
可能有用的
.
Jquery搜索框获取回车事件
.
H5页面添加倒计时,然后自动跳转
.
通过user-agent判断h5页面是在哪个手机App(QQ、微信
.
nginx 禁止未绑定的域名访问
.
JavaScript 获取按键,并屏蔽系统 Window 事件
.
H5之只允许微信浏览器打开,禁止从外部浏览器访问
.
微信打开网址添加在浏览器中打开提示的办法
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
video视频播放,play()、pause()、duration时长、onen
.
HTML5实现MP3上传前的预览和播放时长的获取
瑕
贡献的其它代码
(
9
)
.
查找目录下文件内容包含某个字符串的文件
.
操作Select的Option上下移动及移除添加
.
检查 HTTP 回应的错误和重定向
.
gridview 过长字段显示...
.
查询前1000个平均最慢的sql
.
提供高级自定义查询功能
.
jQuery遍历对象/数组/集合
.
GPS坐标转换接口调用代码实例
.
DbHelperMySQL
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3