前端工做有不少地方須要頁面跳轉,有不少種實現方法,這裏作一下概括。html
通常形式上能夠用<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"
:code
<a href="連接" target="_blank">GO</a>
<a href="history.go(-1)">返回上一步</a> <a href="window.history.back()">返回上一步</a>