<input type='button' onclick="window.open('xxx.htm','')">

解决方案 »

  1.   

    <input type='button' onclick="location.replace(url)">
      

  2.   

    <input type='button' onclick="location=url">
      

  3.   

    <input type='button' onclick="location.href=url">
      

  4.   

    <input type="button" value="转到55页面" onclick=this.document.location="55.htm">
      

  5.   

    <input type="button" onclick=location=url>
      

  6.   

    <input type='button' onclick="window.open('html.htm','名字',width=,height=)">