티스토리 뷰
this로 전달한 경우
<button onclick="run(this)">button</button>
function run(el){
console.log(el);
}
실행결과
<button onclick="run(this)">button</button>
input element를 전달한 경우
<input id="param1" value="seogineer" />
<button onclick="run(param1)">button</button>
function run(el){
console.log(el);
console.log(el.value);
}
실행결과
<input id="param1" value="seogineer">
seogineer
'Language > Javascript' 카테고리의 다른 글
parentElement, parentNode (0) | 2020.12.26 |
---|---|
querySelector(), getElementById() (0) | 2020.12.26 |
Ajax(XMLHTTPRequest 통신) (0) | 2020.12.26 |
HTML에서 자바스크립트 로딩 (0) | 2020.12.23 |
콜백(call back) 함수 (0) | 2020.12.16 |
댓글