jQueryを使用して動的に次のようなHTMLテーブルを作成しようとしています:
<table id='providersFormElementsTable'>
<tr>
<td>Nickname</td>
<td><input type="text" id="nickname" name="nickname"></td>
</tr>
<tr>
<td>CA Number</td>
<td><input type="text" id="account" name="account"></td>
</tr>
</table>
これは私の実際のテーブルです:
<table border="0" cellpadding="0" width="100%" id='providersFormElementsTable'> </table>
これは、and を取る andtr
要素td
を作成するメソッドです:id
labelText
function createFormElement(id, labelText) {
// create a new textInputBox button using supplied parameters
var textInputBox = $('<input />').attr({
type: "text", id: id, name: id
});
// create a new textInputBox using supplied parameters
var inputTypeLable = $('<label />').append(textInputBox).append(labelText);
// append the new radio button and label
$('#providersFormElementsTable').append(inputTypeLable).append('<br />');
}
ツールチップとして表示される値もあります。
でテーブルを動的に作成するのを手伝ってくださいtool tip and tr td
。
編集:
次のコードでほぼ完了しました。
function createProviderFormFields(id, labelText,tooltip,regex) {
var tr = '<tr>' ;
// create a new textInputBox
var textInputBox = $('<input />').attr({
type: "text",
id: id, name: id,
title: tooltip
});
// create a new Label Text
tr += '<td>' + labelText + '</td>';
tr += '<td>' + textInputBox + '</td>';
tr +='</tr>';
return tr;
}
ここでは、ラベルが正しく表示され、入力ボックスが表示されず[object Object]
、テキスト ボックスが表示される場所が示されています...
textInputBox
usingを印刷するとconsole.log
、次のようになります。
[input#nickname, constructor: function, init: function, selector: "", jquery: "1.7.2", size: function…]
問題は何ですか?
道を教えてくれた人に感謝し@theghostofc
ます... :)