반응형
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<script src="https://code.jquery.com/jquery-3.6.2.js" integrity="sha256-pkn2CUZmheSeyssYw3vMp1+xyub4m+e+QK4sQskvuo4=" crossorigin="anonymous"></script>
<body>
<div id="Ahistory">
Ahistory (뒤로가기가 존재합니다.)
</div>
<div id="Bhistory">
Bhistory (뒤로가기가 존재하지 않습니다.)
</div>
</body>
<script>
$('#Ahistory').click(() =>{
location.href = 'https://www.naver.com';
});
$('#Bhistory').click(() =>{
location.replace('https://www.naver.com');
});
</script>
</html>
반응형
'[JavaScript] > [JavaScript Code]' 카테고리의 다른 글
[JavaScript Code] 자바스크립트로 핸드폰 패턴락 구현 Pattern Lock (0) | 2023.01.07 |
---|---|
[JavaScript Code] JSTL ajax로 다시 그려주기 (0) | 2022.12.18 |
[JavaScript Code] a(앵커)태그에 function(함수) 사용하기 (javascript:function) (0) | 2022.12.11 |
[JavaScript Code] ajax통신으로 넘긴 Data 객체에 담기 (0) | 2022.11.07 |
[JavaScript Code] ajax Handler (에이작스 핸들러) (0) | 2022.11.06 |