function clickRemove() {
                $("#input_cart tr.order_row:last input").click(function() {
                    $(this).parent().parent().children().fadeOut("fast", function() {
                        $(this).parent().slideUp("slow", function() {
                            $(this).remove();
                            orderTotal();
                        });
                    });
                });
            };他为什么不这样写呢?function clickRemove() {
                $("#input_cart tr.order_row:last input").click(function() {
                    $(this).parent().parent().children().slideUp("slow").remove();
                            orderTotal();
                });
            };