输入密码后需要帮助重定向到index.html

时间:2014-07-03 22:03:42

标签: javascript html alertify

<script>
function password(){
    alertify.prompt("INGRESE LA CLASE", function (e, str) {
        if (str=='123'){ 
            // here! how to get into the another page, like "index.html"
        } else {
            alertify.log('ERROR! INGRESE LA CLAVE');
        } 
    }); 
}
</script>

<a href="index.html" onClick="password(); return false;">AQUI</a>

它运行Alertify,但是在OK之后,需要一些代码来打开页面索引。

2 个答案:

答案 0 :(得分:0)

使用window.location可以做到这一点。 window.location =&#34; index.html&#34 ;;

答案 1 :(得分:0)

如果你想要的是该功能将当前页面重定向到点击链接的href属性中的页面,那么

<script>
function password(event){
    alertify.prompt("INGRESE LA CLASE", function (e, str) {
        if (str=='123'){ 
            // here! how to get into the another page, like "index.html"
            window.location.href = event.target.href;
        } else {
            alertify.log('ERROR! INGRESE LA CLAVE');
        } 
    }); 
}
</script>
<a href="index.html" onClick="password(event); return false;">AQUI</a>

这将重定向到您在href上的任何页面,无论是index.html还是其他任何页面。我不推荐这种方法,但是......