2 つの問題があります。「入力」ボタンが押されたときにテーブルを動的に作成しようとしています。
function commandLine() {
$('#write').bind('keypress', function (e) {
if (e.keyCode == 13) {
var $table = $('<table>');
//tbody
var $tbody = $table.append('<tbody />').children('tbody');
// add row
$tbody.append('<tr />').children('tr:last')
.append("<td>Router#</td>");
// add table to dom
$table.appendTo('#console');
}
});
}
このコードは機能しますが、Enter キーを押すと 3 つの行が表示され、列は表示されません。Enter キーを押して、2 列の 1 行を取得する必要があります。助けてください!