成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

html選擇框打勾代碼 jquery怎么實(shí)現(xiàn)全選復(fù)選框?

jquery怎么實(shí)現(xiàn)全選復(fù)選框?1. 為所有復(fù)選框定義一個(gè)ID,例如:<input type=“checkbox”ID=“cball”value=“all”>2。為其他復(fù)選框定義相同的名稱,例

jquery怎么實(shí)現(xiàn)全選復(fù)選框?

1. 為所有復(fù)選框定義一個(gè)ID,例如:

<input type=“checkbox”ID=“cball”value=“all”>

2。為其他復(fù)選框定義相同的名稱,例如:

愛好:<input type=“checkbox”name=“cbhobby”value=“song”> singing<input type=“checkbox”name=“cbhobby”value=“dance”> dancing<input type=“checkbox”name=“cbhobby”value=“play”> play games<;input type=“checkbox”name=“cbhobby”value=“eat”<;input type=“checkbox”name=“cbhobby”value=“sleep”>

3。編寫jQuery代碼,使復(fù)選框的選定屬性與單擊“全部”框時(shí)復(fù)選框的選定屬性一致

<;script type=“text/JavaScript”src=“js/jQuery.1.8.3。最小js“></script><script type=”text/javascript“>$(function(){$(”cbAll“)。單擊(function(){$(”input[name=”cbHobby“]”).prop(”checked“,$(this).prop(”checked“)})</script>”