如何创建无法关闭的Magento 2 Modal弹出窗口?
我正在尝试创建无法关闭的模式弹出窗口。它具有一个按钮,可通过单击该按钮将您带到下一页,但是我不希望用户能够关闭它。 可以通过三种方式关闭模式弹出窗口: 单击[X]右上角的十字/ 按钮 按下逃逸 点击覆盖 到目前为止,这是我的模态JS,我认为clickableOverlay: false已经解决了第三个问题: require( [ 'jquery', 'Magento_Ui/js/modal/modal' ], function($, modal) { $("#popup").modal({ autoOpen: true, responsive: true, clickableOverlay: false, modalClass: 'modal-custom', title: 'Popup', buttons: [{ text: $.mage.__('Take me back to the homepage'), class: 'action close-popup wide', click: function () { window.location.href = '/'; } }] }); …