donglu7998 2016-01-19 08:56
浏览 14

在页面刷新html标记ID,类和名称不会被保留

I am taking the data from textbox and option field using AJAX request to the server storing it to db, creating the row and attaching it to table.

$("#addRecord").click(function(e) {
e.preventDefault();
var question_id = $("#questionId").val();
var question_text = $("#questionText").val();
$.ajax({
    url: "addContestAnswer.html",
    type: "post",
    dataType: "json",
    data: {"questionId": question_id, "contestText": question_text},
    success: function(data){
       addRows(data.questionId,data.contestText); 
       // calling the function to create row
    },
    error: function (request, status, error) {
        console.log("error" + status);
    }
  });   
});

creating the row

function addRows(questionId ,questionText) {

    var deleteButton = '<a href="#" id="deleteButton" class="btn btn-primary">delete</a>';
    var fileUpload = '<input type="file" name="supportingDocument" accept="application/pdf" id="uploadSupportingDoc" />';
    var row = "<tr><td class=\"ques_id\">"+questionId+"</td><td class=\"ques_text\">"+questionText+"</td><td class=\"ques_file\">"+fileUpload+"</td><td></td><td>"+deleteButton+"</td></tr>";
    $('#recordTable tr:last').after(row);

    $("#questionId").val("-1");
    $("#questionText").val("");

}

So far the html generated is looking good.

But when I'm refreshing the page, none of the html IDs,classes and Names of generated row are getting preserved.

generated row after ajax call

<tr>
  <td class="ques_id">17</td>
  <td class="ques_text">asddgfdg</td>
  <td class="ques_file"><input type="file" name="supportingDocument" accept="application/pdf" id="uploadSupportingDoc"></td>
  <td></td>
  <td><a href="#" id="deleteButton" class="btn btn-primary">delete</a></td>
</tr>

After refreshing the page

<tr>
    <td>17</td>
    <td>asddgfdg</td>
    <td><input type="file" name="" id=""></td>
    <td></td>                                   
    <td><a href="#" id="" class="btn btn-primary">delete</a></td>
</tr>

why is it happening? am I missing some tweak while generating the row, if not what's the solution?

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 keil的map文件中Image component sizes各项意思
    • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
    • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
    • ¥15 划分vlan后,链路不通了?
    • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
    • ¥15 Vue3 大型图片数据拖动排序
    • ¥15 Centos / PETGEM
    • ¥15 划分vlan后不通了
    • ¥20 用雷电模拟器安装百达屋apk一直闪退
    • ¥15 算能科技20240506咨询(拒绝大模型回答)