我只是想在我点击<a>
标签时打开新窗口而不是打开新标签。我已经使用了不同的代码,但每次都会在新标签中打开。
答案 0 :(得分:0)
你可以使用POPUP WINDOW ---&gt;
<script type="text/javascript">
// Popup window code
function newPopup(url) {
popupWindow = window.open(
url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
}
</script>
<a href="JavaScript:newPopup('http://www.GOOGLE.com/');">Open a popup window</a>