我正在使用连接到数据库的 HTML 和 jQuery 制作用于保存费用记录的表单。
问题是当我单击“添加”按钮时,它应该添加新列,但它会自动提交表单。
HTML
<form name="myForm" action="mysql_connection.php" method="post">
<table>
<tr>
<td>Expense       
      
      
      
Amount
<br/>
<input type="text" name="expense" id="expense" />
<input type="text" name="amount" id="amount" />
<br/>
</td>
</td>
<td>
<button class="add">Add</button>
</td>
</tr>
</table>
<input type="submit" value="Submit" />
</form>
jQuery
$(document).ready(
function() {
$('button.add').live('click',
function() {
$(this)
.closest('tr')
.clone()
.appendTo('table');
$(this)
.text('Remove')
.removeClass('add')
.addClass('remove');
});
$('button.remove').live('click',
function() {
$(this)
.closest('tr')
.remove();
});
$('input:text').each(
function() {
var thisName = $(this).attr('name'),
thisRrow = $(this)
.closest('tr')
.index();
$(this).attr('name', 'row' + thisRow + thisName);
$(this).attr('id', 'row' + thisRow + thisName);
});
});
这是表格
代码