jquery 实现两Select 标签项互调示例代码
2019/6/29 22:35:17
本文主要是介绍jquery 实现两Select 标签项互调示例代码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
<html> <head> <base href="<%=basePath%>"> <title>My JSP 'index.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.1.min.js"></script> </head> <SCRIPT LANGUAGE="JavaScript"> <!-- $(document).ready(function() { $("#toRight").click(function(){ $("#selectLeft option:selected").each(function(){ $("#selectRight").append("<option value=" + $(this).val() + ">" + $(this).html() + "</option>"); $(this).remove(); }); }); $("#toLeft").click(function(){ $("#selectRight option:selected").each(function(){ $("#selectLeft").append("<option value=" + $(this).val() + ">" + $(this).html() + "</option>");//这个方法是默认在后面添加 //$("#selectLeft option:first").before("<option value=" + $(this).val() + ">" + $(this).html() + "</option>"); //此种方法是在select前面加内容 //$("#selectLeft option[value=3]").before("<option value=" + $(this).val() + ">" + $(this).html() + "</option>"); //此种方法是在selectt指定某一行加内容 $(this).remove(); }); }); }); //--> </SCRIPT> <BODY> <table> <tr> <td> <select size='10' multiple id="selectLeft" style="width:200px"> <option value="0">Jquery API</option> <option value="1">JavaScript高级程序设计</option> <option value="2">锋利的jQuery</option> <option value="3">JavaScript 设计模式</option> <option value="4">JavaScript+DOM高级程序设计</option> <option value="5">PHP高级程序设计</option> <option value="6">面向对象程序设计</option> </select> </td> <td> <input type="button" value=" >> " id="toRight" /><br /><br /> <input type="button" value=" << " id="toLeft" /> </td> <td> <select size='10' multiple id="selectRight" style="width:200px"> </select> </td> </tr> </table> </BODY> </HTML>
这篇关于jquery 实现两Select 标签项互调示例代码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-03-06jquery对css样式(jquery中的css方法)-icode9专业技术文章分享
- 2023-05-27JQuery的认识和安装
- 2023-01-06JQuery应用技巧:如何定义 HTML 模板并使用 JQuery 进行加载-icode9专业技术文章分享
- 2022-09-29复习-jQuery
- 2022-09-04Python3项目初始化10-->前端基础jquery、ajax,sweetalert--更新用户改造
- 2022-08-30day 27 jquery
- 2022-08-29jQuery筛选器,bootstrap
- 2022-08-20JQuery事件绑定
- 2022-08-20JQuery案例
- 2022-08-07关于jQuery的学习