<script>
function  aaa(){
window.open('aaa.htm');}
</script><a onclick=aaa()>vvvvvvv</a>

解决方案 »

  1.   

    <a href="http://www.google.com" target="_blank">test</a>
      

  2.   

    1。若vvvvvv是文字,则用 emu(ston) 所说的方法
    2。若vvvvvv是图片,则用<oncilck="window.location=test.html" target="_blank"><img src=.....>
    3.若vvvvvv是按钮,则在form中加入要跳转的页面<form action="test.htm" name=form1 method=post...>
      

  3.   

    -------------------------------------------------------
    2。若vvvvvv是图片,则用<oncilck="window.location=test.html" target="_blank"><img src=.....>
    -------------------------------------------------------
    这是什么东西??-------------------------------------------------------
    3.若vvvvvv是按钮,则在form中加入要跳转的页面<form action="test.htm" name=form1 method=post...>
    -------------------------------------------------------
    按钮应该是 <input type="button" onclick="window.open(url)" value="text">
    表单应该是 <form action=url target="_blank" ....>
      

  4.   

    <script>
    function  aaa(){
    window.open('aaa.htm','_blank','');}
    </script><a href="javascript:aaa()">vvvvvvv</a>