5
如何在magento2中创建表单弹出模式
我是magento2的新手。我正在尝试为我的新表格创建一个弹出模式。我创建了一个弹出窗口,可以正常工作,但无法创建模式。 以下是在页面加载时加载的弹出代码- require([ 'jquery', 'Magento_Ui/js/modal/alert' ], function($, alert) { alert({ title: "Some title", content: "we can show popuop based on cookies later", autoOpen: true, clickableOverlay: false, focus: "", actions: { always: function(){ console.log("modal closed"); } } }); } ); 请帮助我创建一个模态。任何帮助都非常感谢。