91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

javascript下拉列表代碼

發布時間:2020-05-18 13:48:39 來源:億速云 閱讀:215 作者:Leah 欄目:web開發

這篇文章給大家分享的是javascript下拉列表的代碼,相信大部分人都還沒學會這個技能,為了讓大家更加了解,給大家總結了以下內容,話不多說,一起往下看吧。

重要屬性介紹:

ondblclick="selectOne()":雙擊事件

select標簽的屬性:

multiple="multiple":

看一下實現效果:

javascript下拉列表代碼

具體實現代碼:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<!--
			步驟分析
				1. 確定事件: 點擊事件 :onclick事件
				2. 事件要觸發函數 selectOne
				3. selectOne要做一些操作
					(將左邊選中的元素移動到右邊的select中)
					1. 獲取左邊Select中被選中的元素
					2. 將選中的元素添加到右邊的Select中就可以
		-->
		<script>
			
			function selectOne(){
//				1. 獲取左邊Select中被選中的元素
				var leftSelect = document.getElementById("leftSelect");
				var options = leftSelect.options;
				
				//找到右側的Select
				var rightSelect = document.getElementById("rightSelect");
				//遍歷找出被選中的option
				for(var i=0; i < options.length; i++){
					var option1 = options[i];
					if(option1.selected){
		//				2. 將選中的元素添加到右邊的Select中就可以
						rightSelect.appendChild(option1);
					}
				}
			}
			
			//將左邊所有的商品移動到右邊
			function selectAll(){
//				1. 獲取左邊Select中被選中的元素
				var leftSelect = document.getElementById("leftSelect");
				var options = leftSelect.options;
				
				//找到右側的Select
				var rightSelect = document.getElementById("rightSelect");
				//遍歷找出被選中的option
				for(var i=options.length - 1; i >=0; i--){
					var option1 = options[i];
					rightSelect.appendChild(option1);
				}
			}
			
			
			
		</script>
	</head>
	<body>
		
		<table border="1px" width="400px">
			<tr>
				<td>分類名稱</td>
				<td><input type="text" value="手機數碼"/></td>
			</tr>
			<tr>
				<td>分類描述</td>
				<td><input type="text" value="這里面都是手機數碼"/></td>
			</tr>
			<tr>
				<td>分類商品</td>
				<td>
					<!--左邊-->
					<div style="float: left;">
						已有商品<br />
						<select multiple="multiple" id="leftSelect" ondblclick="selectOne()">
							<option>華為</option>
							<option>小米</option>
							<option>錘子</option>
							<option>oppo</option>
						</select>
						<br />
						<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" onclick="selectOne()"> &gt;&gt; </a> <br />
						<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" onclick="selectAll()"> &gt;&gt;&gt; </a>
					</div>
					<!--右邊-->
					<div style="float: right;"> 
						未有商品<br />
						<select multiple="multiple" id="rightSelect">
							<option>蘋果6</option>
							<option>腎7</option>
							<option>諾基亞</option>
							<option>波導</option>
						</select>
						<br />
						<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > &lt;&lt; </a> <br />
						<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > &lt;&lt;&lt; </a>
					</div>
				</td>
			</tr>
			<tr>
				<td colspan="2">
					<input type="submit" value="提交"/>
				</td>
			</tr>
		</table>
	</body>
</html>

以上就是javascript實現下拉列表的代碼,詳細使用情況還得要大家自己使用過才能知道具體要領。如果想閱讀更多相關內容的文章,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东乌| 盘山县| 建湖县| 广元市| 甘孜| 河北省| 大洼县| 富川| 新营市| 社会| 海林市| 太仆寺旗| 东丽区| 博湖县| 江源县| 九龙坡区| 花莲县| 鄂尔多斯市| 鹿泉市| 祥云县| 曲阜市| 文昌市| 嘉禾县| 比如县| 广东省| 长沙市| 米易县| 潼关县| 策勒县| 芷江| 巩义市| 嫩江县| 深州市| 屏山县| 如东县| 揭西县| 梁平县| 临城县| 扬中市| 鹤庆县| 盐津县|