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

jQuery選擇器之表單選擇器

Original 2019-03-04 15:30:02 254
abstract:$(document).ready(function(){$(':enabled')所有激活的input元素(可以使用的input元素)$(':disabled')所有禁用的input元素(不可以使用input元素)$(':selected')所有被選定的元素 針對于select元素     selected 

$(document).ready(function(){

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

$(':disabled')所有禁用的input元素(不可以使用input元素)

$(':selected')所有被選定的元素 針對于select元素     selected  是選定的意思    choice是選擇 selected已選定

$(':checked') 所有被選擇的input元素       


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

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


$(':selected').css('color','red')*/

$(':checked').parent().css('color','#f40') 


})

-------------------------------------html-----------------------------

<from>


<!-- 輸入框1:<input type="" name=""><br><br>

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

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

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

<br><br><br><br>

<select>

<option>馬云</option>

<option  selected>劉強(qiáng)東</option>

<option  selected>馬化騰</option>

<option>宇哥</option>







</select>-->


<br><br><br><br>

我的愛好:

<label><input type="checkbox" >看書</label>

<label><input type="checkbox" checked>寫字</label>

<label><input type="checkbox">打豆豆</label>


</from>


Correcting teacher:滅絕師太Correction time:2019-03-04 15:41:50
Teacher's summary:可以跳出老師上課代碼,自己帶案例測試哦!

Release Notes

Popular Entries