0

私はこのコードを持っています:

$(document).ready(function() {

 $(".quantity").keydown(function(event) {
    // Allow: backspace, delete, tab, escape, and enter
    if ( event.keyCode == 46 || event.keyCode == 8 || event.keyCode == 9 || event.keyCode == 27 || event.keyCode == 13 || 
         // Allow: Ctrl+A
        (event.keyCode == 65 && event.ctrlKey === true) || 
         // Allow: home, end, left, right
        (event.keyCode >= 35 && event.keyCode <= 39)) {
             // let it happen, don't do anything
             return;
    }
    else {
        // Ensure that it is a number and stop the keypress
        if (event.shiftKey || (event.keyCode < 48 || event.keyCode > 57) && (event.keyCode < 96 || event.keyCode > 105 )) {
            event.preventDefault(); 
        }   
    }
});

$counter = 1;
$('#buttonadd').click(function() {
    $counter++;
    $('#invoiceitems > tbody:last').append('<tr><td><input type="button" class="deleteitem" value="Delete"/></td><td><input type="text" name="item[' + $counter + '][desc]" class="regular-text" value="" /></td><td><input type="text" name="item[' + $counter + '][price]" class="price" value="0.00" /></td><td><input type="text" name="item[' + $counter + '][quantity]" class="quantity" value="0" /></td><td><label class="subtotal"></label></td></tr>');
 $('.quantity , .price').unbind().on('change', function() {
    UpdateTotals(this);
});

// Use the .autocomplete() method to compile the list based on input from user
 $(".regular-text").autocomplete("client/inc/get_item_list.php", {
    width: 260,
    matchContains: true,
    mustMatch: true,
    minChars: 2,
    //multiple: true,
    //highlight: false,
    //multipleSeparator: ",",
    selectFirst: true
});

$(".regular-text").result(function(event, data, formatted) {
    $(".itemcode").val(data[1]);
    $(".price").val(data[2]);
        // Give focus to the next input field to recieve input from user
        $("input[class='quantity']").focus();
});

});


 // Use the .autocomplete() method to compile the list based on input from user
$(".regular-text").autocomplete("client/inc/get_item_list.php", {
     width: 260,
     matchContains: true,
     mustMatch: true,
     minChars: 2,
     //multiple: true,
     //highlight: false,
     //multipleSeparator: ",",
     selectFirst: true
 });

 $(".regular-text").result(function(event, data, formatted) {
    $(".itemcode").val(data[1]);
    $(".price").val(data[2]);
        // Give focus to the next input field to recieve input from user
        $("input[class='quantity']").focus();
});

});


$('#deleteitem').click(function() {
//Missing Function.

});

$(function() {
CalculateSubTotals();
CalculateTotal();
// Adding the change events for the Price and
// quantity fields only..
// Changing the total should not affect anything
$('.quantity , .price').on('change', function() {
    UpdateTotals(this);
});
});

function UpdateTotals(elem) {
// This will give the tr of the Element Which was changed
var $container = $(elem).parent().parent();
var quantity = $container.find('.quantity').val();
var price = $container.find('.price').val();
var subtotal = parseInt(quantity) * parseFloat(price);
$container.find('.subtotal').text(subtotal.toFixed(2));
CalculateTotal();
}

function CalculateSubTotals() {
// Calculate the Subtotals when page loads for the 
// first time
var lineTotals = $('.subtotal');
var quantity = $('.quantity');
var price= $('.price');
$.each(lineTotals, function(i){
    var tot = parseInt($(quantity[i]).val()) * parseFloat($(price[i]).val());
    $(lineTotals[i]).text(tot.toFixed(2));
});
}

function CalculateTotal() {
// This will Itearate thru the subtotals and
// claculate the grandTotal and Quantity here
var lineTotals = $('.subtotal');
var quantityTotal = $('.quantity');
var grandTotal = 0.0;
var totalQuantity = 0;
$.each(lineTotals, function(i) {
    grandTotal += parseFloat($(lineTotals[i]).text());
    totalQuantity += parseInt($(quantityTotal[i]).val())
});

$('.totalquantity').text(totalQuantity);
$('.grandtotal').text(parseFloat(grandTotal).toFixed(2));
};

HTML:

<table border="0" id="invoiceitems">
                <thead>
                    <tr>
                    <td></td>
                    <td><strong>Description</strong></td>
                    <td><strong>Unit Cost</strong></td>
                    <td><strong>Quantity</strong></td>
                    <td><strong>Total</strong></td>
                    </tr>
                </thead>
                <tfoot>
                    <tr>
                    <td></td>
                    <td></td>
                    <td></td>
                    <td><strong>Total:</strong></td>
                    <td><label class="grandtotal"></label></td>
                    </tr>
                </tfoot>
                <tbody>
                <tr>
<td><input type="button" class="deleteitem"  value="Delete"/></td>
<td><input type="text" name="item['. 1 .'][desc]" class="regular-text" value="" /></td>
<td><input type="text" name="item['. 1 .'][price]" class="price" value="0.00" /></td>
<td><input type="text" name="item['. 1 .'][quantity]" class="quantity" value="0" /></td>
<td><label class="subtotal"></label></td>
</tr>
                </tbody>
                </table>
                <p><input type="button" id="buttonadd" value="Add Line"/></p>

削除ボタンをクリックしてその行を削除できるようにしたい。ご覧のとおり、機能がありません。オートコンプリートと追加機能に多く使用されるため、そこにはたくさんあります。

4

2 に答える 2

2

あなたは次のようなことを意味します

$('#deleteitem').click(function() {
    $(this).closest('tr').remove();
});

行を動的に追加する場合は、バインドの代わりにライブを使用できます

$('#myTable .delete').live('click', function() {
    $(this).closest('tr').remove();
});

編集

長らくjQueryを使っていませんでしたが、最新版ではliveが廃止されました。これを書く新しい方法は(bfavarettoがすでに指摘したように)

$('#myTable').on('click', '.delete', function() {
    $(this).closest('tr').remove();
});
于 2012-09-27T02:11:38.170 に答える
0

this .parents()との組み合わせを使用して.first()、行を分離できます。.remove()次に、それを DOM から削除するために使用できます。

$(document).ready(function() {
    $('.deleteitem').click(function() {
        var row = $(this).parents('tr').first();
        row.remove();
    });
});

動的に作成された行を処理するには:

$(document).ready(function() {
    $('#invoiceitems').on('click', '.deleteitem', (function() {
        var row = $(this).parents('tr').first();
        row.remove();
    });
});
于 2012-09-27T02:11:57.950 に答える