我有一个索引文件,其中包含搜索表单。搜索结果是一张表。我在index.php中的原始表使用数据表,风格和功能都很完美。这是我的index.php文件的一部分,它显示了searchDate.php文件的结果: 从: 至:
<select name="dateOption" id="dateOption">
<option value="order"> Order </option>
<option value="inventory"> Inventory </option>
<option value="po"> PO# </option>
</select>
<input type="text" name="searchinput" id="searchinput" />
<input type="button" value="SUBMIT" onclick="getDate();" />
</form>
这里是getDate()函数:
function getDate() {
$.post('searchDate.php' , { dateKey: $("#searchinput").val(),
selected: $("#dateOption").val(),
from: $("#date").val(),
to: $("#date2").val()
},
function(output) {
$('#mainTable').empty();
$('#orderSearch').empty();
$('#newOrder').empty();
$(".line").hide();
$("#loadNewInvoice").hide();
$('#searchResult').append(output);
$('#searchResult').css('display','block');
$('#searchResult').show("blind");
});
}
结果是一个与原始工作表具有相同ID和类的表。但是,结果不起作用,没有风格。 先感谢您。 编辑: 这里是css和我的数据表配置以防万一:
table.display {
margin: 0 auto;
clear: both;
width: 100%;
}
table.display thead th {
padding: 3px 18px 3px 10px;
border-bottom: 1px solid black;
font-weight: bold;
cursor: pointer;
* cursor: hand;
}
table.display tfoot th {
padding: 3px 18px 3px 10px;
border-top: 1px solid black;
font-weight: bold;
}
table.display tr.heading2 td {
border-bottom: 1px solid #aaa;
}
table.display td {
padding: 3px 10px;
}
table.display td.center {
text-align: center;
}
数据表:
$(document).ready( function () {
var oTable = $('#theTable').dataTable({
"bPaginate": true,
"bScrollCollapse": true,
"iDisplayLength": 15,
"oLanguage": {
"sSearch": "Search all columns:"
},
"aoColumnDefs": [
{ "asSorting": [ "desc" ], "aTargets": [ 0 ] }
]
} );
答案 0 :(得分:0)
我以前遇到过同样的问题。 Jquery要求您的所有ID在页面中都是唯一的。如果不遵守此规则,则它根本不起作用!
因此,如果您更改表的ID,则代码应按预期工作。