我刚刚学习 javascript 和 jquery,现在我在使用 jquery 数据表时遇到了问题。
我的数据两次发布到 php。我不知道如何在我的脚本上实现 event.preventDefault 并返回 false 将不起作用。
olistorderproduktdatatable = $("#listorderprodukttable").dataTable({
"bJQueryUI": true, "bPaginate": false, "bFilter": true, "bInfo": false, "bAutoWidth": true, "sDom": 'Rlfrtip',
"bServerSide": true,
"sSearch" :"Filter",
"bDestroy": true,
"sAjaxSource": "share/content/helper/datatablelistorderprodukt.php"
});
$('#listorderprodukttable tbody').delegate("tr", "click", rowClickAddPosition);
function rowClickAddPosition(){
//Welche Zeile wurde selektiert und ID herausfiltern
if (hlr)
$("td:first", hlr).parent().children().each(function(){$(this).removeClass('markrow');});
hlr = this;
$("td:first", this).parent().children().each(function(){$(this).addClass('markrow');});
// You can pull the values out of the row here if required
var a = $("td:first", this).text();
var b = $("td:eq(1)", this).text();
selectedRow = a; //ID der Zeile WICHTIGE VARIABLE!!!
//Abfrage ob ID leer ist, also ob es überhaupt Einträge gibt.
if(selectedRow != "No matching records found"){
$.ajax({
type : 'POST',
url : 'share/content/helper/orderaddposition.php',
cache: false,
data: {
SelectedProdukt : selectedRow,
BestellID : BestellID
},
success: function(data) {
callbackaddposition();
}
});
}
}
我不知道如何赶上活动?