如何将单元格附加到js jquery中的表行

时间:2016-05-20 13:11:48

标签: javascript jquery html jsp

$("#requesttable").append("<center><legend><h2>Remote Stop</h2></legend></center><tr><td><B>Transaction ID</B></td><td><input id='transactionIdremtestop' class='easyui-textbox' name='transactionIdremtestop' style='width:200px;'></td></tr>");

我必须在javascript中附加此代码。

This part is working but html textbox is showing instead of 'easyui-textbox'..how can i make it..to show easyui textbox

2 个答案:

答案 0 :(得分:0)

如果我找到了你的话,那只是引用你的双引号。虽然我不确定它是否有效,但我只是在这里修改你自己的代码:

$("#canclresv").append('<center><legend><h2>Cancel Reservation</h2></legend></center><tr><td><input id="keygetconfig" class="easyui-textbox" name="keygetconfig" style="width:200px;"></td></tr>');

答案 1 :(得分:0)

为表格提供一个id,如id =&#34; table&#34;那么

&#13;
&#13;
 document.getElementById("table").rows[0].insertCell(-1).innerHTML +="whatever you want";
&#13;
&#13;
&#13;

如果要插入已存在的单元格,请使用:

&#13;
&#13;
 document.getElementById("table").rows[0].cells[index].innerHTML ="whatever you want";
&#13;
&#13;
&#13;