TIL,WIL(일간,주간 회고)
2022.12.06 TIL 자바스크립트 href 새창,기존창
worldint
2022. 12. 6. 22:40
-알게된점:
window는 새창이고,
location은 기존창 이정도만알고있으면될것같다.
location, window사용예시
<button onclick="location.href='index.html'">move</button>
<button onclick="window.open('index.html')">move</button>
window.href= 이건 해보니까 안된다
window는 open으로만 해줘야 하는듯하다