Js/JQuery下拉框新增新選項
Js
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>下拉選單新增新選項</title>
</head>
<body>
<script type="text/javascript">
function newOption(){
//獲取新增的省份
var province=document.getElementById("newPro").value;
//獲取列表
var newOption=document.getElementById("newOption")
//在下拉選單中新增
/*方法一
var option=new Option(province)
var nO=newOption.options.add(option)
*/
//方法二
//建立option物件
var select=document.createElement("option")
//在新增的option中新增值
select.innerHTML=province
//在新增的option中新增value
select.value=province
//把option物件新增到下拉選單中
newOption.appendChild(select)
}
</script>
<input type="text" id="newPro">
<input type="button" value="新增" "newOption()"><br>
<select id="newOption">
<option value="">請選擇省份</option>
<option value="河北省">河北省</option>
<option value="陝西省">陝西省</option>
<option value="湖南省">湖南省</option>
<select>
</body>
</html>
JQ
<body>
<script type="text/javascript">
$(function(){
//$('#div1').append(' world');//hello world
//$('#div1').appendTo('world');//world hello
$("#mybtn").click(function(){
//獲取text中的值
var $mytext=$("#mytext").val();
//去掉空格
var mytext=$mytext.trim();
//新增一個option到select中,把text中獲取的值放入新增的option中
var $newoption=$("#myselect").append("<option value='"+mytext+"'>"+mytext+"</option>");
})
})
</script>
<div id="div1">hello</div><hr>
<input type="text" id="mytext">
<input type="button" id="mybtn" value="新增"><br>
<select id="myselect">
<option value="">--省份--</option>
<option value="河北省">河北省</option>
</select>
</body>
相關文章
- jQuery 動態載入下拉框選項(Django)jQueryDjango
- jquery.idTabs.min.js選項卡程式碼例項jQueryJS
- jquery選項卡jQuery
- jquery獲取下拉框選中的屬性值jQuery
- js選項卡不會寫?JQuery一行程式碼搞定!JSjQuery行程
- jQuery tab選項卡效果程式碼例項jQuery
- 【jquery】select下拉框賦值jQuery賦值
- QListWidget項新增勾選框
- 利用jQuery實現Tab選項卡jQuery
- 短視訊直播系統,選擇選項時,點選出現下拉框
- Vue element下拉框加一個自定義的選項Vue
- jQuery tab選項卡程式碼詳解jQuery
- Grafana新增下拉框變數Grafana變數
- jQuery 關於點選選單項,使子條目jQuery
- cmake中新增 -g編譯選項編譯
- jQuery點選滑出層效果程式碼例項jQuery
- jQuery 新增元素jQuery
- 前端--js實現選項卡前端JS
- 多選下拉框xmSelect
- 用於新增新內容的四個 jQuery 方法jQuery
- 使用Vue實現下拉選單框批量新增選項Vue
- jQuery 例項jQuery
- Jquery實現頁面的新增、刪除、全選、取消全選、漸變色jQuery
- select 下拉框選中事件事件
- excel下拉選擇項怎麼設定 excel怎麼新增下拉選項內容Excel
- jQuery點選文字框清除內容程式碼例項jQuery
- 使用原生js實現選項卡功能例項教程JS
- jQuery 項卡標題欄閃爍提示新資訊jQuery
- jQuery 雜項方法jQuery
- selenium+python 下拉框選擇Python
- uniapp 實現複選下拉框APP
- Qtum如何新增執行選項(或配置檔案)QT
- C# ClosedXML 匯出 Excel 新增下拉選項 CellDropdownC#XMLExcel
- jQuery頂部帶有選項卡的焦點圖效果jQuery
- typescript 3.2 新編譯選項strictBindCallApplyTypeScript編譯APP
- cypress 如何操作新的選項卡
- jquery js 設定 div 的內容,給 div 新增一個屬性jQueryJS
- 求教:python+selenium 下拉框選擇Python