クレジットカード番号のフォームがあります。番号は、実際のクレジットカードと同様に4つの部分に分かれています。
ユーザーがフィールドに4文字を入力すると、自動的に次のタグに移動するJavaScriptテイストをフォームに追加したい。しかし、最後のタグにはありません。これにより、ユーザーはフォーカスを移動するために「タブ」キーを入力する必要がなくなります。
タグに追加のクラス、ID、または名前を追加してもかまいません。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>MoveFocus</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
// some code goes here.
});
</script>
</head>
<body>
<form action="post.php" method="post" accept-charset="utf-8">
<input type="text" value="" id="first" size="4" maxlength="4"/> -
<input type="text" value="" id="second" size="4" maxlength="4"/> -
<input type="text" value="" id="third" size="4" maxlength="4"/> -
<input type="text" value="" id="fourth" size="4" maxlength="4"/>
<p><input type="submit" value="Send Credit Card"></p>
</form>
</body>
</html>
これまでこのツールを使用したことはありませんが、望みどおりに機能します。いくつかのアイデアを得るために、ソースを見ることができます。
状況に応じて、次のコードを追加します。
<script type="text/javascript" src="jquery.autotab.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#first').autotab({ target: '#second', format: 'numeric' });
$('#second').autotab({ target: '#third', format: 'numeric', previous: '#first' });
$('#third').autotab({ previous: '#second', format: 'numeric' });
});
</script>
他の人が促したように、これをしないでください。ユーザーは、自動タブを使用することを予測できなくなります。これにより、ユーザーは気が狂います。クレジットカードをコピーして貼り付けるユーザーについて考えたことはありますか?とにかく4つのフィールドを使用する利点は何ですか?
また、すべてのクレジットカードが番号を4つの4つのセットに分けるわけではありません。たとえば、American Expressはそれらを数字の3つのグループに分割します。この場合、テキストフィールドを動的に追加および削除すると、問題が発生します。
代わりに、Javascriptを使用してスペースを自動的に挿入し、フォーカスではなくカーソルを進めます。番号の最初の桁はクレジットカードのタイプを示します(5はマスターカード、4はVisa、3はAmerican Express…)。これを読んで、スペースを追加する場所を決定できます。投稿するときに文字列からスペースを削除します。このアプローチは、あなたとあなたのユーザーの大きな苦痛を軽減します。
@Sanderが示唆したように、自動タブを行う簡単な方法は次のとおりです。
jQuery("form input[type=text]").on('input',function () {
if(jQuery(this).val().length == jQuery(this).attr('maxlength')) {
jQuery(this).next("input").focus();
}
});
更新 by @ morespace54
oninput
はhtml5であるIE9 +でイベントがサポートされているため、代わりにkeyup
を使用できます。
Masked Input jQueryプラグインを使用することを強くお勧めします。 http://digitalbush.com/projects/masked-input-plugin/
使用法は次のようになります。
$('#creditCardNumber').mask("9999-9999-9999-9999");
これにより、コピーと貼り付けがサポートされます。
フォームフィールドが例のように他のフィールドと並んでいる場合は、単にnextElementSibling
とvoilàを利用できます!
function skipIfMax(element) {
max = parseInt(element.dataset.max)
if (element.value.length >= max && element.nextElementSibling) {
element.nextElementSibling.focus();
}
}
<input type="text" data-max=2 oninput="skipIfMax(this)"/>
<input type="text" data-max=3 oninput="skipIfMax(this)"/>
<input type="text" data-max=4 oninput="skipIfMax(this)"/>
<input type="text" data-max=5 oninput="skipIfMax(this)"/>
非常に簡単な解決策は次のようになります。
<script type="text/javascript">
function input_onchange(me){
if (me.value.length != me.maxlength){
return;
}
var i;
var elements = me.form.elements;
for (i=0, numElements=elements.length; i<numElements; i++) {
if (elements[i]==me){
break;
}
}
elements[i+1].focus();
}
</script>
<form action="post.php" method="post" accept-charset="utf-8">
<input type="text" value="" id="first" size="4" maxlength="4"
onchange="input_onchange(this)"
/> -
<input type="text" value="" id="second" size="4" maxlength="4"
onchange="input_onchange(this)"
/> -
<input type="text" value="" id="third" size="4" maxlength="4"
onchange="input_onchange(this)"
/> -
<input type="text" value="" id="fourth" size="4" maxlength="4"
onchange="input_onchange(this)"
/> -
<p><input type="submit" value="Send Credit Card"></p>
</form>
私はそれをテストしていませんが、これはうまくいくと思います。また、4番目のフィールドが完了すると、おそらくボタンにフォーカスが移動します。
$("form input").change(function () {
var maxLength = $(this).attr('maxlength');
if($(this).val().length == maxLength) {
$(this).next().focus();
}
}
これには4つのフィールドはありませんが、クレジットカードを検証します(Luhnのアルゴリズムではなく、整合性チェック!)。 複数のフィールドを使用するのは面倒ですユーザーと自動タブ移動について。 1つのフィールドのみを使用することをお勧めします。
$("#myform").validate({
rules: {
field: {
required: true,
creditcard: true
}
}
});
/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/validate/lib/jquery.delegate.js"></script>
<script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js"></script>
<script type="text/javascript">
jQuery.validator.setDefaults({
debug: true,
success: "valid"
});;
</script>
<script>
$(document).ready(function(){
$("#myform").validate({
rules: {
field: {
required: true,
creditcard: true
}
}
});
});
</script>
<style>#field { margin-left: .5em; float: left; }
#field, label { float: left; font-family: Arial, Helvetica, sans-serif; font-size: small; }
br { clear: both; }
input { border: 1px solid black; margin-bottom: .5em; }
input.error { border: 1px solid red; }
label.error {
background: url('http://dev.jquery.com/view/trunk/plugins/validate/demo/images/unchecked.gif') no-repeat;
padding-left: 16px;
margin-left: .3em;
}
label.valid {
background: url('http://dev.jquery.com/view/trunk/plugins/validate/demo/images/checked.gif') no-repeat;
display: block;
width: 16px;
height: 16px;
}
</style>
</head>
<body>
<form id="myform">
<label for="field">Required, creditcard (try 446-667-651): </label>
<input class="left" id="field" name="field" />
<br/>
<input type="submit" value="Validate!" />
</form>
</body>
</html>