我有以下表格:
<form:form action="buyStock" method="post" modelAttribute="orderList"
onsubmit="myFunction" >
<table id="buyTable" class="display" >
<thead>
<tr>
<th>Stock Symbol</th>
<th>Stock Name</th>
<th>Last Trade</th>
<th>Gains</th>
我使用以下
将其制作成数据表<script type="text/javascript">
$(function() {
buyTable =$("#buyTable").DataTable({
"iDisplayLength": 2,
"aLengthMenu": [[100, 25, 50, 100, -1], [10, 25, 50, 100, "All"]]
});
问题是如果用户想要购买多个股票,它只会发送当前页面中的股票,而不是用户事先选择的任何股票,
我尝试使用以下功能来解决问题,但没有成功:
<script>
function myFunction() {
alert("The form was submitted");
buyTable.search('').draw(false);
}
如何提交整个表单而不仅仅是可见的?