JavaScript 링크 클릭하면 Alert창 띄우기 (popup alert on link click)
페이지 정보
본문
<script type="text/javascript">
function confirm_alert(node) {
return confirm("Please click on OK to continue.");
}
</script>
<a href="http://www.google.com" onclick="return confirm_alert(this);">Click Me</a>
자료출처
http://stackoverflow.com/questions/8813674/javascript-popup-alert-on-link-click
function confirm_alert(node) {
return confirm("Please click on OK to continue.");
}
</script>
<a href="http://www.google.com" onclick="return confirm_alert(this);">Click Me</a>
자료출처
http://stackoverflow.com/questions/8813674/javascript-popup-alert-on-link-click
댓글목록
등록된 댓글이 없습니다.