我一直在搜索和搜索谷歌以寻找我的问题的答案,但到目前为止还没有成功。我希望你们中的一个可以给我一些帮助。
我的目标是在选择单选时将包含所选单选按钮 className 的表更改为“已选择”,当未选择单选时将其更改为“容器”。
我有 10 个类名称为“股息”的 div,其中包含一个类名称为“容器”的表,然后是其中的两个较小的表。在底部的容器表中是一个名为“page1”的隐藏单选按钮。然后另外 10 个相同但输入名称是“page2”
我为容器表编写了一个 onClcick,以便用户可以选择整个表而不是单选按钮,但不是我试图更改所选容器的样式,以便用户知道他们已经选择了它。
我尝试了几种不同的方法,只需编写即可将样式更改为新类
document.getElementById('container').className = 'selected';
但是因为所有 10 个 div 共享相同的名称,它只会改变它找到的第一个元素的样式。
所以我尝试编写这个循环来检查文档中是否有任何选定的收音机,然后将其他名称更改为默认样式。
我确定它很愚蠢,但我很困惑 atm.. 任何帮助将不胜感激。
谢谢。
//check for check = true
selected = function () {
var divs = document.getElementByTagName('DIV'),
div,
tbl = divs.getElementById('TABLE'),
rad,
stat,
i;
for (var i = 0; i < divs.length; i++) {
// no .id but the counter of the loop
div = div[i];
// check the className not the div element
if (div.className == 'dividend') {
rad = tbl.getElementsByTagName('INPUT');
if (tbl.className == 'container') {
if (rad[0].checked == true) {
tbl.className = 'selected';
}
}
}
}
};
// Gets radio button for selected element in Page1 and checks
function P1sClick(n){
document.forms["myform"]["page1"][n].checked=true;
selected();
};
// Gets radio button for selected element in Page2 and checks
function P2sClick(n){
document.forms["myform"]["page2"][n].checked=true;
};
////////////HTML I only included 2 examples of the DIVs because its a lot of code/////
<form name="myform" action="sample.asp" method="POST">
<h2>Page 1</h2>
<div class="dividend>
<table class="container" onclick="P1sClick(0)" cellpadding="0" cellspacing="0"><tr><td valign="top" >
<table class="grid" cellpadding="0" cellspacing="0">
<tr><td width="40" height="25" style="border-bottom:1px solid #000; border- right:1px solid #000;">1</td></tr>
<tr><td height="25" style="border-bottom:1px solid #000; border-right:1px solid #000;">2</td></tr>
<tr><td height="25" style="border-bottom:1px solid #000; border-right:1px solid #000;">3</td></tr>
<tr><td height="25" style="border-right:1px solid #000;">4</td></tr>
</table>
</td><td valign="top">
<table class="grid" cellpadding="0" cellspacing="0">
<tr><td width="40" height="25" style="border-bottom:1px solid #000;">5</td></tr>
<tr><td height="25" style="border-bottom:1px solid #000;">6</td></tr>
<tr><td height="25" style="border-bottom:1px solid #000;">7</td></tr>
<tr><td height="25">8</td></tr>
</table>
</td></tr>
<tr><td colspan="2" align="center" height="20" style="padding-top:3px; font-weight:bold; font-style:italic;">4x4<br><input type="radio" name="page1" title="4 by 4" value="4x4" style="display:none;"></td></tr></table>
</div>
<div class="dividend">
<table class="container" onclick="P2sClick(0)" cellpadding="0" cellspacing="0"><tr><td valign="top">
<table class="grid" cellpadding="0" cellspacing="0">
<tr><td width="40" height="25" style="border-bottom:1px solid #000; border-right:1px solid #000;">1</td></tr>
<tr><td height="25" style="border-bottom:1px solid #000; border-right:1px solid #000;">2</td></tr>
<tr><td height="25" style="border-bottom:1px solid #000; border-right:1px solid #000;">3</td></tr>
<tr><td height="25" style="border-right:1px solid #000;">4</td></tr>
</table>
</td><td valign="top">
<table class="grid" cellpadding="0" cellspacing="0">
<tr><td width="40" height="33" style="border-bottom:1px solid #000;">5</td></tr>
<tr><td height="33" style="border-bottom:1px solid #000;">6</td></tr>
<tr><td height="34">7</td></tr>
</table>
</td></tr>
<tr><td colspan="2" align="center" height="20" style="padding-top:3px; font-weight:bold; font-style:italic;">4x3<br><input type="radio" name="page2" title="4 by 3" value="4x3" style="display:none;"></td></tr></table>
</div>
更新:
所以我一直在研究 jQuery 并在这里找到了这篇文章。我正在尝试这个功能,它看起来应该对我有用,但不是。也许你可以告诉我这是否是一条更好的路线。
$(document).ready(function() {
$('input[type="radio"]').change( function() {
// grab all the radio buttons with the same name as the one just changed
var this_radio_set = $('input[name="'+$(this).attr("page1")+'"]');
// iterate through each
// if checked, set its parent label's class to "selected"
// if not checked, remove the "selected" class from the parent label
// my HTML markup for each button is <label><input type="radio" /> Label Text</label>
// so that this works anywhere even without a unique ID applied to the button and label
for (var i=0; i < this_radio_set.length;i++) {
if ( $(this_radio_set[i]).is(':checked') ) $(this_radio_set[i]).parent('table').addClass('selected');
else $(this_radio_set[i]).parent('table').removeClass('selected');
}
});
});
更新我已经用 BobS 所做的以下更正更新了我的 jQuery。我现在使用 jQuery 通过单击表格来选择单选,并使用 jquery 在选中单选时更改样式。出于某种原因,我在组合这两个功能时遇到了麻烦,所以当您单击表格并选中单选时,样式也会发生变化。这是我最新的代码,希望有人可以帮助我:p
// jQuery to select radio button within clicked table
$(function() {
$('table').click(function(event) {
if(event.target.type != "radio") {
var that = $(this).find('input:radio');
that.attr('checked', !that.is(':checked'));
}
});
});
// jQuery to change the style of the table containing the selected radio button
$(function() {
$('input[type="radio"]').change( function() {
// grab all the radio buttons with the same name as the one just changed
var this_radio_set = $('input[name="'+$(this).attr("name")+'"]');
for (var i=0; i < this_radio_set.length;i++) {
if ( $(this_radio_set[i]).is(':checked') )
$(this_radio_set[i]).closest('table').addClass('selected');
else
$(this_radio_set[i]).closest('table').removeClass('selected');
}
});
});