这是我的HTML视图:
$('ul li.selected').each(function () {
console.log("li.selected");
var val = $(this).find(":checkbox").val();
console.log(val);
});
这是我的观点表格:
<tr class="header">
<th>CLASS</th>
<th>NAME</th>
<th>Actions</th>
</tr>
<?php
foreach($this->documents as $row): ?>
<tr>
<td><?php echo $row['CLASS'];?></td>
<td><?php echo $row['NAME'];?></td>
href="/admin/documents/delete?ID=<?php echo $row['ID'];?>">
delete</a>
</td>
</tr>
<?php endforeach; ?>
</table>
</div>
我有zend形式,有两个输入CLASS和NAME。 如何在同一行显示CLASS和所需的输入文本框列?
同样的,如何将提交和重置按钮放在同一行?