위젯에서 사용가능한 문법
새 창에서 웹페이지 열기
위젯의 <script>
태그 안에 다음과같은 코드를 입력해 새 창에서 웹페이지를 열 수 있습니다.
let url = "https://zep.us/";
window.parent.postMessage({
type: 'ScriptAction:OPEN_WINDOW',
link: url,
zepSystem: true
}, '*');
Last updated
Was this helpful?