js select下拉選單的defaultSelected屬性簡單介紹
此屬性可以判斷option項是否是預設選中項。
如果是預設選中項,此屬性返回true,否則返回false。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script type="text/javascript"> window.onload=function(){ var oshow=document.getElementById("show"); var osel=document.getElementById("sel"); var opts=osel.options; for(var index=0;index<opts.length;index++){ oshow.innerHTML=oshow.innerHTML+opts[index].defaultSelected+" "; } } </script> </head> <body> <div id="show"></div> <select id="sel"> <option value="1">螞蟻部落一</option> <option value="2" selected>螞蟻部落二</option> <option value="3">螞蟻部落三</option> </select> </body> </html>
以上程式碼演示了defaultSelected屬性的作用。
相關文章
- HTML select 下拉選單HTML
- HTML select下拉選單HTML
- jQuery 美化select下拉選單jQuery
- 圓角select下拉選單
- EAV(實體-屬性-值)模型簡單介紹模型
- 模擬select下拉選單詳解
- JavaScript動態操作select下拉選單JavaScript
- 選擇select下拉選單網頁跳轉網頁
- 設定select下拉選單的預設選中項
- select下拉選單跳轉效果程式碼
- jQuery Validate對select下拉選單驗證jQuery
- form表單的簡單介紹ORM
- js迴圈中reduce的用法簡單介紹JS
- 迴圈方式為select下拉選單新增年份
- AOP的簡單介紹
- Webpack 的簡單介紹Web
- 簡單介紹js 陣列 fill() 填充方法JS陣列
- Map簡單介紹
- SVG簡單介紹SVG
- Clickjacking簡單介紹
- 【Pandas】簡單介紹
- ActiveMQ簡單介紹MQ
- JSON簡單介紹JSON
- RPC簡單介紹RPC
- Python簡單介紹Python
- KVM簡單介紹
- RMI簡單介紹
- HTML簡單介紹HTML
- HTML 簡單介紹HTML
- JavaScript 簡單介紹JavaScript
- CSS 簡單介紹CSS
- ajax簡單介紹
- 函子的簡單介紹
- Flownet 介紹 及光流的簡單介紹
- 幽靈選單介紹;
- Relief 特徵選擇演算法簡單介紹特徵演算法
- 簡單介紹克隆 JavaScriptJavaScript
- 禪道簡單介紹
- Apache Curator簡單介紹Apache