a
, audio
, button
, details
, embed
, iframe
, img
, input
, label
, select
, textarea
, video
<a>
vs <button>
a
요소button
요소를 사용※참고
Button
에 손 모양 커서를 사용해도 될까?
관련 글 보기
<a
href="https://velog.io/@jtwjs"
target="_blank"
>
window.opener
객체를 통해 부모 페이지 A의 제어 권한을 획득<a
href="https://velog.io/@jtwjs"
target="_blank"
rel="noopener noreferrer"
>
window.opener
객체를 제거window.opener
제어 불능target="_blank"
링크에 rel="noopener"
속성을 암시적으로 적용하고 있다.<detalis>
& <summary>
<details open>
<summary>
details content 요약
</summary>
...숨겨진 컨텐츠
</details>
open
속성을 넣으면 열린 상태로 표시<input>
type="datetime-local"
, type="month"
, type="week"
, type="time
"등 다양한 타입 존재<datalist>
<label for="search">검색: </label>
<input type="search" id="search" value="?" list="search-list">
<datalist id="search-list">
<option value="프론트엔드" label="프론트엔드"></option>
<option value="취업" label="취업"></option>
</datalist>