国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

jquery選擇器

Original 2018-11-12 18:46:08 213
abstract:<!DOCTYPE html><html><head><meta charset="utf-8"> <title>jQuery選擇器</title> <script type="text/javascript"src="jquery-3.3.1.min.js"&

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>jQuery選擇器</title>

<script type="text/javascript"src="jquery-3.3.1.min.js"></script>

<style type="text/css">

  div{width: 100px;height: 100px; background: #ccc;margin-top: 20px;}


</style>

</head>

<body>

<script type="text/javascript">

 $(document).ready(function(){

   // $(':enabled').css('background','pink')

   // $(':disabled').css('background','red')

   // $(':selected').css('color','blue')

   $(':checked').parent().css('color','red')

 })

</script>

<form>

 輸入框1<input type="text" name=""><br>

 輸入框2<input type="text" name=""><br>

 輸入框3<input type="text" name="" disabled><br>

 輸入框4<input type="text" name=""><br>

 <select>

   <option>摩羯座</option>

   <option selected>雙魚座</option>

   <option>射手座</option>

   <option>天蝎座</option>

 </select>

 <br>

 愛好:

 <label><input type="checkbox" name="">泡妞</label>

 <label><input type="checkbox" name="" checked>喝酒</label>

 <label><input type="checkbox" name="">賺錢</label>

</form>

</body>

</html> 


Correcting teacher:滅絕師太Correction time:2018-11-12 19:07:26
Teacher's summary:選擇器這一塊好要好好掌握哦……后面非常重要

Release Notes

Popular Entries