Html5

onclick에 target 걸기

원2 2021. 8. 15. 21:38
728x90
반응형

타켓의 이름.location.href="주소"

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

<h2>관리자 페이지</h2>
<table border="1">
<div>
<span><a href="cartList" target="if_a">카트리스트</a></span>
<span><a href="userList" target="if_a">유저리스트</a></span>
<span><input type="button" value="카트 리스트 타겟연습" onclick="if_a.location.href='cartList'"></span>
</div>
	<tr>
		<th>1</th>
		<th>2</th>
		<th>3</th>
		<th>4</th>
	</tr>
	<tr>
		<td><input type="button" value="유저화면으로 이동" onclick="location.href='userList'"></td>
		<td><input type="button" value="메뉴화면으로 이동" onclick="location.href='menuList'"></td>
		<td><input type="button" value="오더화면으로 이동" onclick="location.href='orderList'"></td>
		<td><input type="button" value="카트화면으로 이동" onclick="location.href='cartList'"></td>
	</tr>
</table>
<hr>
<iframe src="userList" width="500px" height="500px;" name="if_a"></iframe>
<iframe src="menuList" width="700px;" height="500px;"></iframe>
<iframe src="orderList" width="500px;" height="500px;"></iframe>
<iframe src="cartList" width="300px;" height="500px;"></iframe>
</body>
</html>
728x90
반응형

'Html5' 카테고리의 다른 글

글자수 제한  (0) 2022.01.18
공간 분할 태그  (0) 2021.05.04
html 입력 양식 태그 <form>  (0) 2021.05.03
html 기본 태그  (0) 2021.05.03