我想知道如何输入输入特定数字或文字所需的字段[例如:激活码] 以及在确认答案输入的情况下移动到“网页”的按钮,并且在非确认的情况下移动到“另一页”。
答案 0 :(得分:1)
使用必需属性:
<input type="text" required />
答案 1 :(得分:1)
要移至单独的页面,您可以使用标题功能:
header("Location:url");
制作需要拍摄特定文字或数字的字段。你可以使用:
<input type="text" required /> //for text
<input type="number" required /> //for number
修改强> 如果您仅使用javascript,也可以使用以下内容移至单独的页面。
window.location="url";
答案 2 :(得分:0)
这是 FIDDLE
<input type="text" class="input" placeholder="Enter activation code">
<input type="button" class="button" value="Confirm">
$(function() {
var code = '2528-3265-7592';
$('.button').click(function() {
if($('.input').val() === code) {
window.location = 'http://google.com';
}
else {
window.location = 'http://yahoo.com';
}
});
});