$("#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
答案 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;那么
document.getElementById("table").rows[0].insertCell(-1).innerHTML +="whatever you want";
&#13;
如果要插入已存在的单元格,请使用:
document.getElementById("table").rows[0].cells[index].innerHTML ="whatever you want";
&#13;