jquery 實現兩Select 標籤項互調範例程式碼,jquery互調

來源:互聯網
上載者:User

jquery 實現兩Select 標籤項互調範例程式碼,jquery互調

<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問題

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="jquery-1.4.4.js"></script>
<script>
function selectId(){
var index=document.getElementById("inputVlaue").value; //index為你傳過來的值
alert(index);
$("#select option:nth-child("+index+")").attr("selected", "selected");
}
</script>
</head>
<body>
<select id="select">
<option>廣州</option>
<option>東莞</option>
<option>佛山</option>
<option>肇慶</option>
<option>江門</option>
</select><br/>
請改變input裡面的值(值就是第幾個option從1開始 這裡第一個option是廣州)
<input type="text" id="inputVlaue" onChange="selectId()">
</body>
</html>
 
用jquery怎擷取select元素中當前選擇的常值內容?(而不是選項的值)問怎寫

試一下這個把,我剛才試過了,可以的
var tt=$("form select[name=selectName]").find('option:selected').text();
alert(tt);
把selectName換成你表單中的下拉框name值就行了
要是使用ID查詢這樣就行了
var tt=$("#selectId").find('option:selected').text();就行
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.