답변 1개
5년 전
html만으로는 안되구요. jquery로 클릭이벤트 잡아서 새창 먼저 띄우고 현재창 이동시켜면 될거같네요.
<script>
$(document).ready(function(){
$('a.link').click(function(){
window.open('http://daum.net');
location.href = 'http://naver.com';
})
})
</script>
로그인 후 평가할 수 있습니다
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인