我遇到了JS函数的问题:
function wcmpMarkeAsShip(self, order_id) {
JQuery('#wcmp-marke-ship-order-id').val(order_id);
JQuery('#marke-as-ship-modal').modal('show');
}
我试图将此功能更改为:
function wcmpMarkeAsShip(self, order_id) {
$('#wcmp-marke-ship-order-id').val(order_id);
$('#marke-as-ship-modal').modal('show');
}
并尝试将“ show”替换为“ toggle”,但是我遇到了同样的问题:
SCRIPT438:对象不支持属性或方法“模式”
在此先感谢您的帮助。