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

jq選擇器之表單選擇器

原創(chuàng) 2019-01-28 12:44:39 298
摘要:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript" src="jq_
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript" src="jq_3.3.1_mi.js"></script>
</head>
<body>
<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>廣東</option>
<option selected>四川</option>
<option>湖南</option>
</select><br>
愛(ài)好:
<label><input type="checkbox" name="">旅游</label>
<label><input type="checkbox" name="" checked>看書</label>
<label><input type="checkbox" name="">游戲</label>
</form>
<script  type="text/javascript" >
$(document).ready(function(){
          $(':enabled').css('background','pink')//選取到所有被激活的input元素
          $(':disabled').css('background','blue')//匹配到禁用的input元素
          $(':selected').css('color','red')//匹配到所有被選中的元素,針對(duì)select元素
          $(':checked').parent().css('color','orange')//匹配包含子元素或者文本的元素
     
        })
</script>
</script>
</body>
</html>

本案例涉及的知識(shí)點(diǎn):

Jq的表單選擇器

語(yǔ)法:

$(‘:enabled’)所有激活的inp元素(可以使用input元素)

$(‘:disable’)所有禁用的input元素(不可以使用的input元素)

$(‘:selected’)所有被選取的元素,針對(duì)于select元素

$(':checked').parent()//匹配包含子元素或者文本的元素

js,jq剛開(kāi)始學(xué),非常不熟練,本練習(xí)剛開(kāi)始忘了引入jq庫(kù),效果不出現(xiàn)并報(bào)錯(cuò),經(jīng)過(guò)檢查發(fā)現(xiàn)修正了錯(cuò)誤,對(duì)知識(shí)的掌握有了更深的印象??赐暌曨l閉眼睛做作業(yè)花費(fèi)的時(shí)間較長(zhǎng),做了后面好像又忘了前面的知識(shí),此階段大限將至,焦慮焦慮……

批改老師:天蓬老師批改時(shí)間:2019-01-28 13:33:11
老師總結(jié):表單選擇器遠(yuǎn)不止這幾個(gè), 其它的也要學(xué)

發(fā)佈手記

熱門詞條