本文主要和大家分享頁面跳轉小結詳解,希望能幫助大家更掌握頁面跳躍知識。
一般形式上可以用<a></a>
、<button></button>
、<input/>
:
<a href="链接">GO</a> <button onclick="window.location.href='链接'">GO</button> <input type="button" value="GO" onclick="location.href='链接'">
window.location.href = '链接'; window.location = '链接'; location.href = '链接'; location = '链接'; top.location = '链接';
window.open('链接'); open('链接');
或在HTML標籤中加入target="_blank"
:
<a href="链接" target="_blank">GO</a>
<a href="history.go(-1)">返回上一步</a> <a href="window.history.back()">返回上一步</a>
相關推薦:
以上是頁面跳轉小結詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!