0

我刚刚学习 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();
            }
        });
    }
}

我不知道如何赶上活动?

4

2 回答 2

0

你试过了吗:

function rowClickAddPosition(e) {
   e.preventDefault();
   // ...
}
于 2013-10-16T10:54:12.943 回答
0

使用event.stopPropagation()return false在函数中使用,例如,

$('#listorderprodukttable tbody').delegate("tr", "click", function(e){
    rowClickAddPosition(e);
    return false;// to stop bubbling up
});

function rowClickAddPosition(e){
   e.stopPropagation();
   // remaining code
于 2013-10-16T10:56:03.903 回答