-5

我正在使用 JavaScript 和 JSON 实现按需加载网格视图。

   function OnSuccess(response) {
        debugger;
        var xmlDoc = $.parseXML(response.d);
        var xml = $(xmlDoc);
        pageCount = parseInt(xml.find("PageCount").eq(0).find("PageCount").text());
        var customers = xml.find("Quotes");
        $("[id$=gridPolicyNumbers] .loader").remove();
        customers.each(function () {
            var customer = $(this);
             var row = "<tr>" +
            **"Place check box code here"**+
            "<td>" + customer.find("PolicyNumber").text() + "</td>" +
            "<td>" + customer.find("QuoteNumber").text() +
            "</td><td>" + customer.find("InsuredName").text() +
            "</td><td>" + customer.find("EffectiveDate").text() +
            "</td><td>" + customer.find("ExpireDate").text() +
            "</td><td>" + customer.find("LineCode").text() + "</td>"
            + "</tr>";

            $("[id$=gridPolicyNumbers]").append(row);
            //alert(row.text);

        });

在这里,我必须将第一列添加为复选框。

任何人都可以建议如何做..

提前致谢。

4

2 回答 2

1

代替**"Place check box code here"**+所有你需要做的是:

"<td><input type='checkbox' name='check1' value='Check Me'/></td>"

于 2013-04-05T11:43:41.713 回答
0
"<td><input type='checkbox' /></td>"
于 2013-04-05T11:43:27.003 回答