使用jquery
为所有文本输入一个名为“table-form”的表下的“form-control”类<table class="table table-bordered table-hover table-striped" id="table-form">
<tr valign="baseline">
<td nowrap align="right">ID:</td>
<td><?php echo $row_Recordset1['ID']; ?></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Cid:</td>
<td><input type="text" name="cid" value="<?php echo htmlentities($row_Recordset1['cid'], ENT_COMPAT, 'utf-8'); ?>" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Text:</td>
<td><input type="text" name="text" value="<?php echo htmlentities($row_Recordset1['text'], ENT_COMPAT, 'utf-8'); ?>" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Star:</td>
<td><input type="text" name="star" value="<?php echo htmlentities($row_Recordset1['star'], ENT_COMPAT, 'utf-8'); ?>" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td><input type="submit" value="Update record"></td>
</tr>
</table>
使用jquery
为所有文本输入一个名为“table-form”的表下的“form-control”类答案 0 :(得分:1)
你可以这样做。
$('#table-form input[type=text]').addClass('form-control');