본문 바로가기
code,app,web/html,js

js 함수 파라메터 인라인 호출 on click, 이렇게도 되네 ^^

by 글봄챰학 2024. 8. 27.

 

onclick "" 쌍 따옴표 안에서 값으로 호출 가능함, 인자 전달 파라메터 전달 가능.

함수 실행 시점에서 넘어온 스트링을 파라메터로 보고 파싱하는 것으로 보임.

 

<script>
function fgo1(pssleUrl){
   alert("["+pssleUrl+"]");
 }
</script>


<input type="text" id="sleUrl" name="sleUrl" maxlength="200" size="50" value="Drop Url">
<input type="button" value="go" onclick="fgo1(document.getElementById('sleUrl').value)"><br>

 

 

#재미있는자스 #재미있는 자바스크립트