버튼 클릭시 다른 페이지 이동
본문
버튼을 클릭햇을때 페이지 이동이 되어야되는디
왜 안먹는지는 모르겟습니다..
location.herf =
'<?php echo G5_BBS_URL ?>/login.php?url=<?php echo $urlencode; ?>'; }
해도 안되고
window.open은 되는데 location은 왜 안되는지 모르겟습니다..
<?php include_once('./_common.php');
if (!defined('_GNUBOARD_')) exit; ?>
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>입점신청</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="occupant_form_wrap" style="padding: 319px">
<div id="occupant_area">
<div class="occ_form_area" style='text-align:center'>
<h1 >죄송하지만</br>회원가입이나 로그인후 진행해 주세요 :)</h1>
<button onclick="newpage()" class="occ_last_btn" style="background: linear-gradient(45deg, #8e2de2,#4a00e0); border:none; color: white; width: 42%; height: 50px; font-size: 1.5em; border-radius: 38px; cursor:pointer ">로그인하러가기</button>
</div>
</div>
</div>
<script>
function newpage() {
window.location.herf='<?php echo G5_BBS_URL ?>/login.php?url=<?php echo $urlencode; ?>';
}
</script>
</body>
</html>
!-->
답변 1
window.location.href='<?php echo G5_BBS_URL ?>/login.php?url=<?php echo $urlencode; ?>';
herf가 아니라 href입니다.
답변을 작성하시기 전에 로그인 해주세요.