为什么jQuery不会改变()不能使用asp.net WebForms中的单选按钮?

时间:2011-07-20 00:32:08

标签: jquery asp.net webforms

jQuery change()不能使用asp.net WebForms中的单选按钮。

下面是我试图在我的webform应用程序中使用的代码的jsFiddle链接。

jsFiddle

我正在使用jQuery 1.4.1

有人知道这个问题吗?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.1.min.js"></script>
    <script type="text/javascript">

    $(document).ready(function () {

        radiogroup = $('#radio').children('input:radio');

        $(radiogroup).change(function () {
            if ($(this).val() == 'on') {
                alert($(this).val());
                $('.timeLimit').show();
            }
            if ($(this).val() == 'off') {
                alert($(this).val());
                $('.timeLimit').hide();
            }
        });
    });
    </script>

</head>
<body>
    <form id="form1" runat="server">
    <div id="radio" class="cell ms-formbody">
        <input type="radio" value="on" id="radio1" name="radio" /><label for="radio1">On</label>
        <input type="radio" value="off" id="radio2" name="radio" checked="checked" /><label for="radio2">Off</label>
    </div>
    </form>
</body>
</html>

我花了3个多小时试图找出问题的原因,现在急需帮助。 :(

1 个答案:

答案 0 :(得分:0)

使用jQuery 1.6.2而不是1.4.1

解决了这个问题