我目前正在尝试将此按钮放入我的 HTML 表中。
这是我要插入的代码:
<button class=\"btn btn-primary btn-xs my-xs-btn\" type='button' onClick='changeRec(".$num.")' >
<span class=\"glyphicon glyphicon-pencil\"></span> Edit
</button>
这是我插入它的尝试。
<button type="button" class="btn btn-primary btn-lg" onclick="myFunction()">Add</button>
<script>
function myFunction() {
var table = document.getElementById("myTable");
var row = table.insertRow(-1);
var cellInstruction = row.insertCell(-1);
cellInstruction.innerHTML = '<button class=\"btn btn-primary btn-xs my-xs-btn\" type='button' onClick='changeRec(".$num.")' >
<span class=\"glyphicon glyphicon-pencil\"></span> Edit
</button>';
}
</script>
任何帮助,将不胜感激。谢谢!