f.Frame.window.location()
f.Frame.window.location(url, isReplace)
개요
f.Frame.window.location를 통해 페이지의 링크를 이동시킬 수 있습니다.
f.Frame은 이벤트 스크립트에서 사용할 수 있으며 디버거에서는 동작하지 않습니다.
파라미터
파라미터명
필수여부
타입
제약사항
설명
url
No
String
url
isReplace
No
Boolean
true/false
replace여부
예시
// 특정 url로 이동하거나 현재 페이지를 새로고침합니다.
let url = "https://flextudio.com";
f.Frame.window.location(url);
f.Frame.window.location(); //현재 페이지 새로고침
Last updated
Was this helpful?