亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

jquery的表單選擇器

原創(chuàng) 2019-05-15 11:58:47 233
摘要:<!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> 


批改老師:天蓬老師批改時(shí)間:2019-05-15 13:20:59
老師總結(jié):表單選擇與操作, 不論是在jquery中, 還是在其它腳本 中, 都是一個(gè)重點(diǎn)和難點(diǎn)

發(fā)佈手記

熱門詞條