我试图将Check all应用到我的表单但不受影响

时间:2018-02-08 11:56:35

标签: asp-classic

我尝试将检查全部应用于某些具有无线电类型的输入但不工作但我不知道为什么?

我试过这个作为输入

<input type="checkbox" name="all" value="1"
                onclick='
    <%
    xox=0
    while xox<count
        xox=xox+1
        %>
        Radio1_<%=xox%>.checked=true;
    <%wend%>
                                '
                                >ApplyAll


        <td class="style13" style="width: 75">
        <input class="style15" name="Radio1_<%=count%>" type="radio" value="0"
         onclick='
 AdminDet<%=count%>.disabled=true;
 AdminDet<%=count%>.value="";
 if (Radio1_<%=count%>.checked==true)
     Radio1_<%=count%>.checked=false;
 else
     Radio1_<%=count%>.checked=true;
 '><span class="style16">Accept</span></td>

1 个答案:

答案 0 :(得分:0)

<%
    I= record count of total radio
    %>
        <FORM class=niceform method="GET" action="anketilet.asp" name="anketform"  onsubmit="return z();">  


    <script type="text/javascript"> 
    function z()
    {
        var de='<%=I%>';
        var z=0;
        for (i=0;i<anketform.elements.length ; i++ ) {
            if (anketform.elements[i].type == 'radio'/* && anketform.elements[i].checked*/) 
            {
                if(anketform.elements[i].checked)
                    {
                    z++;
                    }          
            }
              }

         if (z!=de)
            {
                alert("Lütfen cevapları eksiksiz doldurduğunuzdan emin olunuz!...");
                return (false);
            }
         else return (true);


    }

    </script>
    </table>

    </fieldset><br>
       <fieldset class="action" style="width: 800px;">
            <input type="submit" name="submit" id="submit" value="GÖNDER">
        </fieldset></FORM>