저는 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");
}
}
});
}
);
모달을 만들 수 있도록 도와주세요. 도움을 주셔서 감사합니다.
이 질문은 Javascript에 관한 것이므로 일반적인 주제 인 stackoverflow.com 사이트
—
Sander Mangel에 있습니다.