함수에 매개변수대입, id로 html에 입력된 값 가져옴
<body>
<h1>포털 사이트</h1>
"열기"버튼을 클릭하면 해당 홈페이지를 새 창에서 볼 수 있습니다.
<br><br>
<table border="1">
<tr>
<th style="background-color: #00ff00; padding: 10px">네이버</th>
<td id="naver">http://www.naver.com</td>
<td>
<button type="button" onclick="func('naver')">열기</button>
</td>
</tr>
<tr>
<th style="background-color: #00ff00; padding: 10px">구글</th>
<td id="google">http://www.google.com</td>
<td>
<button type="button" onclick="func('google')">열기</button>
</td>
</tr>
</table>
<script type="text/javascript">
function func( name ) {
if(name == 'naver'){
let url = document.getElementById("naver").innerHTML;
location.href = url
}
else if(name == 'google'){
let url = document.getElementById("google").innerHTML;
location.href = url
}
}
</script>
</body>
'Java Script > work' 카테고리의 다른 글
배경 이미지가 웹 브라우저의 크기에 맞고 폰트를 반투명으로 하라. (0) | 2020.07.13 |
---|---|
select으로 선택하여 포스터사진 띄우기 (0) | 2020.07.10 |
이차방정식 버튼으로 답 확인 (0) | 2020.07.10 |
버튼 다중 클릭 이벤트 처리 (0) | 2020.07.10 |
node, file// 사용을 통한 테이블 추가! file로 read; (0) | 2020.07.10 |