我有一个输入:<input type="text" class="redirect"></input>
当用户输入A80G
时,我希望他/她被重定向到page1.html
,当用户输入B6T4
时,我希望他/她被重定向到{ {1}}。
有人可以建议我吗?
我最无耻的感激之情。
答案 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';}}">