jQuery実装を使用すると、送信するときにデフォルト値を簡単に削除できます。以下に例を示します。
$('#submit').click(function(){
var text = this.attr('placeholder');
var inputvalue = this.val(); // you need to collect this anyways
if (text === inputvalue) inputvalue = "";
// $.ajax(... // do your ajax thing here
});
あなたがオーバーレイを探していることを知っていますが、このルートの使いやすさを好むかもしれません(今、私が上で書いたことを知っています)。もしそうなら、私は自分のプロジェクトのためにこれを書きました、そしてそれは本当にうまくいき(jQueryが必要です)、あなたのサイト全体に実装するのにほんの数分しかかかりません。最初は灰色のテキスト、焦点が合っているときは薄い灰色、タイプしているときは黒いテキストが表示されます。また、入力フィールドが空の場合は常にプレースホルダーテキストが提供されます。
最初にフォームを設定し、プレースホルダー属性を入力タグに含めます。
<input placeholder="enter your email here">
このコードをコピーして、placeholder.jsとして保存してください。
(function( $ ){
$.fn.placeHolder = function() {
var input = this;
var text = input.attr('placeholder'); // make sure you have your placeholder attributes completed for each input field
if (text) input.val(text).css({ color:'grey' });
input.focus(function(){
if (input.val() === text) input.css({ color:'lightGrey' }).selectRange(0,0).one('keydown', function(){
input.val("").css({ color:'black' });
});
});
input.blur(function(){
if (input.val() == "" || input.val() === text) input.val(text).css({ color:'grey' });
});
input.keyup(function(){
if (input.val() == "") input.val(text).css({ color:'lightGrey' }).selectRange(0,0).one('keydown', function(){
input.val("").css({ color:'black' });
});
});
input.mouseup(function(){
if (input.val() === text) input.selectRange(0,0);
});
};
$.fn.selectRange = function(start, end) {
return this.each(function() {
if (this.setSelectionRange) { this.setSelectionRange(start, end);
} else if (this.createTextRange) {
var range = this.createTextRange();
range.collapse(true);
range.moveEnd('character', end);
range.moveStart('character', start);
range.select();
}
});
};
})( jQuery );
1つの入力のみで使用するには
$('#myinput').placeHolder(); // just one
これは、ブラウザーがHTML5プレースホルダー属性をサポートしていない場合に、サイトのすべての入力フィールドに実装することをお勧めします。
var placeholder = 'placeholder' in document.createElement('input');
if (!placeholder) {
$.getScript("../js/placeholder.js", function() {
$(":input").each(function(){ // this will work for all input fields
$(this).placeHolder();
});
});
}