Magento - '提交运输'btn无法在管理页面上运行

Once an order is confirmed, i also confirm the shipment about that order.

So on Sales > order, i click the ship btn located in upper right side. Then, i write down the tracking code and submit the shipment!

The the button of "submit shipping" is not working!

The problem is it does not display javascript error or php error, browser console stays clean, nothing happens on the screen. It's as if the button does nothing.

enter image description here

Problem resolved: Change the file: items.phtml app\design\adminhtml\default\default\template\sales\order\shipment\create\items.phtml

Change the function submitShipment to:

function submitShipment(btn) {
 var checkbox = $(btn).up('.order-totals').select('#create_shipping_label')[0];

 if (!validQtyItems()) {
        return;
    }
    disableElements('submit-button');
    $('edit_form').submit();    
}