哪里包括Checkbox&使可编辑

时间:2013-03-17 15:37:50

标签: javascript html ajax

我正在使用ajax来调用我的网络服务&在表数据中显示Json值。现在,客户希望在每行中编辑数据,从而单击复选框。

单击复选框后,该行应该是可编辑的。请帮我在下面的代码中包含复选框的位置。

$.ajax({
    type: "GET", //GET or POST or PUT or DELETE verb
    url: "http://localhost:8080/karthi/", // Location of the service
    success: function (json) {//On Successfull service call

    var txtStr = '<table class="datatable"><thead><tr> <th>id</th> <th>firstName</th> <th>lastName</th> <th>licenseId</th> <th>telephone</th> <th>email</th> </tr></thead><tbody>';

    for(var i = 0; i < json.length; i++) {

     txtStr += '<tr class="gradeA"> <td><a class="edit_row" href="#tab2" onclick="showDetails(\''+json[i].id+'\');">'+json[i].id+'</a></td> <td>'+json[i].firstName+'</td> <td>'+json[i].lastName+'</td> <td>'+json[i].licenseId+'</td> <td>'+json[i].telephone+'</td> <td>'+json[i].email+'</td> </tr>';

1 个答案:

答案 0 :(得分:0)

将其包含在showDetails()中。 将它作为id字段之前的第一列。 在thead标记内添加一个新标题