我想在输入代码时将用户重定向到特定页面

时间:2014-05-11 07:56:40

标签: html validation redirect input

我有一个输入:<input type="text" class="redirect"></input>

当用户输入A80G时,我希望他/她被重定向到page1.html,当用户输入B6T4时,我希望他/她被重定向到{ {1}}。

有人可以建议我吗?

我最无耻的感激之情。

    -

2 个答案:

答案 0 :(得分:0)

you can use switch case for this

$value = $_POST['input'];

switch ($value) {
    case 'A80G':
       header('location:page-1.html');
        break;
    case 'B6T4':
        header('location:page-2.html');
        break;
    default:
       header('location:page-1.html');
}

答案 1 :(得分:0)

<input class="redirect" onkeydown="if (event.keyCode == 13){if(this.value=='A80G'){window.location.href='page1.html';};if(this.value=='B6T4'){window.location.href='page2.html';}}">