这是我的代码
<form class="form-horizontal">
<div class="control-group">
<div class="controls">
<button onclick="javascript:add_user_group(2);" class="btn">add</button>
</div>
</div>
<table id="users-table" class="table table-striped" >
<thead>
<tr>
<th>User Name</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</form>
我只想在单击添加按钮时向表中添加新行,但似乎单击添加按钮会触发表单提交。
不只是一个按钮
type=submit
提交表格。或者表单中的任何按钮都会触发表单提交?