使用一个单选按钮检查所有其他单选按钮

时间:2014-03-26 21:14:28

标签: javascript php

我在这里获取滚动号码,其中有两个单选按钮在' php'。将有多个滚动号码,所以我想检查其值为“是”的所有单选按钮&# 39;立即使用特定的单选按钮或复选框。尽管我没有在此代码中写下该按钮,因为我不知道该写什么。请使用java脚本给我一个解决方案。

while($row=mysqli_fetch_assoc($result))
{

    echo"<tr><td>{$row['roll']}</td>
    </td><td></td><td></td><td></td><td>
    <td><input type='radio' name='present[$i]' value='Yes'>YES</td>
          </td><td></td><td></td><td>
          <td><input type='radio' name='present[$i]' value='No'>NO</td></tr>";
          $i++;

}

1 个答案:

答案 0 :(得分:0)

这种类型的交互应该使用Javascript实现,因为它是一个客户端操作。

HTML:

<form>
    <input type="radio" name="radio1" value="yes"/>Yes
    <input type="radio" name="radio1" value="no"/>No
    <br />
    <input type="radio" name="radio2" value="yes"/>Yes
    <input type="radio" name="radio2" value="no"/>No
    <br />
    <input type="radio" name="radio3" value="yes"/>Yes
    <input type="radio" name="radio3" value="no"/>No
    <br />
    <input type="button" value="Select All" onclick="selectAll('radio',true);"/>
    <input type="button" value="Deselect All" onclick="selectAll('radio',false);"/>
</form>

使用Javascript:

function selectAll( prefix, set ) {
    var form = document.forms[0], //Get the appropriate form
        i = 0,
        radio;
    while( radio = form[prefix + ++i] ) //Loop through all named radio# elements
        for( var j = 0; j < radio.length; j++ ) //Loop through each set of named radio buttons
            if( radio[j].value == (set ? "yes" : "no") ) //Selector based on value of set
                radio[j].checked = true; //Check that radio button!
}

JSFiddle