所以,我需要这样做,如果用户在mysite.com/cat上并点击了某些内容,那么在mysite.com/cat标签中,它们会被重定向到mysite.com/dog并打开一个链接在新标签中。我试过这个:<a href="dog.html" target="_self" onclick="window.open('cat.html');">Click</a>
哪种工作,但它想...让它变得奇怪
答案 0 :(得分:0)
<a href="#" target="_self" onclick="RedirectUrl()">Click</a>
<script>
function RedirectUrl(){
window.location.href ="yourUrl";
}
<script>
答案 1 :(得分:0)
你可以做到
<a href="dog.html" target="_blank" onclick="window.location.href ="dog.html";">Click</a>
答案 2 :(得分:0)
你可以在没有javascript的情况下使用html。试试这段代码:
<a href="dog.html" target="_blank">Click</a>