页面的跳转....div

来源:互联网 发布:怎么登陆支付宝知托付 编辑:程序博客网 时间:2024/09/21 06:33




function changeCurrentPage() {

    var choosePage = document.getElementById("select").selectedIndex;
    if(choosePage == 1) {
        location.href = "messager.html";
    }
    if(choosePage == 2) {
        location.href = "messageReplyed.html";
    }
    if(choosePage == 3) {
        location.href = "messageNoReply.html";
    }
    if(choosePage == 4) {
        location.href = "messagePublished.html";
    }
    if(choosePage == 5) {
        location.href = "messageNoPublish.html";
    }
        
}
原创粉丝点击