这段代码有什么问题?

时间:2011-01-27 14:39:05

标签: javascript asp.net vb.net visual-studio-2008

修改此代码的位置

如果选择CHECKBOX BOX或者不选择MSGBOX,我仍然会获得MSGBOX

我的代码会在以下两种情况下重定向到Google:如果用户选中该复选框,则会重定向到www.google.com,但如果用户忘记选中该复选框,则会显示带有确认的msg框按钮。当我点击确定时,它应该重定向到www.google.com

我想要

当用户忘记检查任何复选框以显示带有确定按钮的msgbox并保持在同一页面上时。否则,如果用户选择任何复选框,则重定向到www.google.com

此代码出了什么问题?

    

    <title>Untitled Page</title>
    </head>
<body>
    <form id="form1" runat="server">
    <div>

        <asp:CheckBox ID="CheckBox1" runat="server" />
        <asp:CheckBox ID="CheckBox2" runat="server" />

    </div>
    <asp:Button ID="Button1" runat="server" OnClientClick ="ConfirmSelection(this.form)" Text="Button" />


    </form>
    <script type="text/javascript">
function ConfirmSelection(frm) 
{ 
   for (i=0; i<=1; i++) {
     //chkSubjectOfInterest is the id of your checkbox control

     if (frm.elements[i].name.indexOf('chkSubjectOfInterest') !=-1) 
     { 
       if (frm.elements[i].checked) 
       { 
         return true
       } 
     } 
   } 
   alert('You havent selected an Item yet!')
   return false
}
</script>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

我认为你需要在函数调用中返回。还要确保函数ConfirmSelection在if语句的两个部分都有明确的返回值

OnClientClick ="return ConfirmSelection(this.form);"