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

jquery表單選擇器

original 2018-12-18 14:36:37 282
abstrait:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>jquery表單選擇器</title> <script type="text/javascript" src="jquery-3.3.1.js&qu

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>jquery表單選擇器</title>

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

</head>

<body>

<script type="text/javascript">

//

$(document).ready(function () {

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

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

$(':selected').css('color','red');//下拉框

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


})

</script>

<form action="">

<input type="text" name="" id="" value="" />

<input type="text" name="" id="" value="" disabled="disabled"/>

<input type="text" name="" id="" value="" />

<input type="text" name="" id="" value="" />

<select name="">

<option value="">1</option>

<option value="" selected>2</option>

<option value="">3</option>

<option value="">4</option>

</select>

<br />

愛(ài)好:

<label for=""><input type="checkbox" />1</label>

<label for=""><input type="checkbox" checked/>2</label>

<label for=""><input type="checkbox" />3</label>

</form>

</body>

</html>


Professeur correcteur:韋小寶Temps de correction:2018-12-18 14:41:10
Résumé du professeur:恩!寫(xiě)的很不錯(cuò)!這種案例在日常開(kāi)發(fā)中會(huì)經(jīng)常使用的!課后還要記得多練習(xí)哦!

Notes de version

Entrées populaires