체크 상자 checkbox는 여러 내용의 표시와 숨김을 제어합니다
1189 단어 웹 스크립트
코드는 다음과 같습니다.
스타일시트 섹션:
html 섹션:
a1
a2
a3
a4
b1
b2
b3
b4
스크립트 섹션:
$(function(){
$(".a0 tr td").each(function(index, element) {
$(this).children("input").click(function(){
if($(this).is(':checked'))
{
$(".b0 div:eq("+index+")").show()
}else{
$(".b0 div:eq("+index+")").hide()
}
console.log(this)
})
});
})
반드시 jquery를 인용하여 1.9X 버전을 건의하십시오.