jq 跳转方式汇总

  按钮式:

  <INPUT name="pclog" type="button" value="GO" onClick="location.href='http://www.ddhbb.com/'">

  链接式:

  <a href="javascript:history.go(-1)">返回上一步</a>

  <a href="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a>

  直接跳转式:(登录用过)

  <script>window.location.href='http://www.ddhbb.com';</script>
 
    



  开新窗口:

  <a href="javascript:" onClick="window.open('http://www.ddhbb.com/blog/guestbook.asp','','height=500,width=611,scrollbars=yes,status=yes')">布丁          足迹</a>
原文地址:https://www.cnblogs.com/zhaoyingjie/p/6385836.html