如何使用jquery获取gridview中所选单选按钮的值

时间:2012-08-14 06:53:55

标签: javascript jquery html ajax

我正在研究wijgrid,我给了html表单的单选按钮。 我已经使用jquery来获取单选按钮的值,它在表单上显示但是没有显示在网格上。

我想在选择单选按钮时得到paramcode的值,这个值应该在wijgrid上显示。我的代码工作正常并显示值但是当我保存表单数据时它不接受单选按钮值在网格内。

请帮忙......谢谢Tina !!

这是我的JSON(为了易读性而重新格式化,但实际上已缩小):

{
    "jsonWrapperforGrid": {
        "page": "1",
        "total": "2",
        "rows": [
            {
                "tenantId": 0,
                "paramType": "UserGender",
                "paramCode":"F", 
                "langCode":"en", 
                "paramValue":"Female"
            },
            {
                "tenantId": 0,
                "paramType": "UserGender",
                "paramCode": "M",
                "langCode": "en",
                "paramValue": "Male", 
                "paramBlob": ""
            }
        ]
    }
}

这是我的jQuery脚本:

<script type="text/javascript">
$.ajax({ 
    url: "UserGender",
    type: "GET",
    dataType: "json",
    contentType : "application/json",
    success: function (responce) { 
        if (responce.jsonWrapperforGrid.rows.length > 0) {
            $.each(responce.jsonWrapperforGrid.rows, function (i, entity) {  
                $('#gencom01').append(
                    $('<label />', { 'for': 'gender' + entity.paramValue,
                                     'text': entity.paramValue }),
                    $('<input />', { 'id': 'gender' + entity.paramCode,
                                     'type': 'radio', 
                                     'name': 'gender', 
                                     'value': entity.paramValue })
                    .click(function() {
                        var inputValue = $('input:radio:[name=+"gendernew"]:checked').val(entity.paramCode);
                        $("#gencom").val(entity.paramCode );
                    })
                );
            });
        }
    }
});
</script>

这是我的HTML:

<body>  
  <div id="gencom01">
    <td><input id="gencom" style="width:205px ;" name="gendernew">
  </div>
</body>

1 个答案:

答案 0 :(得分:1)

这真的是你的所有代码吗? 如果你开始在加载时调用ajax,也许你可以在服务器端处理它?但是你可能有你的理由。

首先,您需要使用$(document).ready();事件,您无法开始将内容附加到可能尚未在您的DOM中的标记。

您的 if语句无用 if (responce.jsonWrapperforGrid.rows.length > 0),如果长度为0,您的.each()循环将无法执行任何操作,无需先测试。

然后更糟糕的是,你开始在.append()中声明一个.click(),虽然它可能有效,但看起来有点奇怪并且可能是许多错误的来源。调试通常更容易保持DOM操作和事件分离。并使用.on(),更新。

我不知道您的AJAX调用背后的技术,但将JSON 解析为真正的JS对象可以提供帮助:var jsonData = $.parseJSON(responce);

因此,尽可能少地使用.append()是一种很好的做法,在循环中使用它可能需要一些时间。我建议将数据保存在变量中,只有在循环结束时才可以附加所有内容。

我不知道<td><div>正在做什么。

以下是您的代码的样子,我无法测试任何内容,因为我不知道您的JSON是怎样的:

$(document).ready(function()
{
    $.ajax({ 
        url: "/mgw/pankanis/admin/SysParameter?Paramtype=UserGender",
        type:"GET",
        dataType: "json",

        contentType : "application/json",
        success: function (responce)
        {
            var jsonData = $.parseJSON(responce);
            var toAppend = "";
            $.each(jsonData.jsonWrapperforGrid.rows,function(i,entity)
            {
                toAppend += '<label for="gender'+entity.paramValue+'">'+entity.paramValue+'</label>';
                toAppend += '<input id="gender'+entity.paramCode+'" type="radio" name="gender" value="'+entity.paramValue+'">';
            });
            $('#gencom01').append(toAppend);
            $("#gencom01 input:not(#gencom)").on("click",function()
            {
                $("#gencom").val($(this).attr("id").substr(6)); // entity.paramCode
            })
        }
    });
});