1. 程式人生 > >在Js中網頁跳轉的寫法

在Js中網頁跳轉的寫法

function toBooks() {
    // alert("跳轉到圖書列表");
    //在原有視窗開啟
    window.location.href = "http://www.baidu.com";
    //開啟新的視窗
    window.open("http://www.baidu.com");
}