jQuery :selected

admin發表於2017-02-14

此選擇器能夠匹配被選擇的<option>元素。

jQuery1.0版本新增。

語法結構:

[JavaScript] 純文字檢視 複製程式碼
jQuery( ":selected" )

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){ 
  $(".sel :selected").css("color", "red")
}); 
</script>
</head>
<body>
<ul>
  <li>
    <select name="sel" class="sel">
      <option>螞蟻部落一</option>
      <option>螞蟻部落二</option>
      <option selected="selected">螞蟻部落三</option>
    </select>
  </li>
</ul>
</body>
</html>

將被選中的option元素的字型顏色設定為紅色。

相關文章