我正在尝试使用 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>
这是将创建tr
和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
usingconsole.log
时,我得到以下信息:
[input#nickname, constructor: function, init: function, selector: "", jquery: "1.7.2", size: function…]
可能是什么问题?
感谢@theghostofc
谁给我指路... :)