網(wǎng)頁開發(fā)中,經(jīng)常會涉及到網(wǎng)頁間的跳轉(zhuǎn)。那么這篇文章中,w3cschool 小編來為大家介紹一下 JavaScript 如何實現(xiàn)頁面中的跳轉(zhuǎn)。
方法一:
<body>
<input type="button" value="點(diǎn)擊跳轉(zhuǎn)" onclick="tran()">
<script type="text/javascript">
function tran(){
window.open("http://o2fo.com/");}
</script>
</body>
上述代碼中,點(diǎn)擊按鈕時會觸發(fā)響應(yīng),將會打開新窗口,并跳轉(zhuǎn)頁面。
方法二:
<body>
<input type="button" value="點(diǎn)擊跳轉(zhuǎn)" onclick="tran()">
<script type="text/javascript">
function tran(){
window.location.href="http://o2fo.com/";}
</script>
</body>
該方法中,也會跳轉(zhuǎn)為新頁面,但不會產(chǎn)生新的窗口,而是在舊窗口中跳轉(zhuǎn)為新頁面。
以上就是文章“JavaScript 如何設(shè)置打開新窗口?兩種方法介紹”的全部內(nèi)容。更多 JavaScript 學(xué)習(xí)請前往 w3cschool。