본문 바로가기

Java Script/work

클릭하여 원하는 브라우져로 이동

함수에 매개변수대입, 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>