Javascriptでテーブルの列の表示・非表示が出来ないものかと思い、作成しています。 //Javascript function changeCell(){ if(document.form1.check_type.checked == true){ document.getElementById("noneLine").style.visibility = "hidden"; }else{ document.getElementById("noneLine").style.visibility = ""; } } //切替チェックボックス <input name="check_type" type="checkbox" onclick="changeCell();"> //適応箇所 <table border="1"> <tr> <th>あああ</th> <th>いいい</th> <