この単純な関数を作成して、それをサポートしていないブラウザーにプレースホルダーを追加しました。
問題は、ユーザーがその内部をクリックしたときにプレースホルダーを削除する可能性をその機能に追加するにはどうすればよいですか?
removeAttr() のように使用してみてください、
_$('input,textarea').focus(function(){
$(this).removeAttr('placeholder');
});
_
blur()
で再び_placeholder value
_を取得するには、これを試してください。
_$('input,textarea').focus(function(){
$(this).data('placeholder',$(this).attr('placeholder'))
.attr('placeholder','');
}).blur(function(){
$(this).attr('placeholder',$(this).data('placeholder'));
});
_
これを実現するためにJavaScript関数を使用する必要はありません。より簡単な解決策は次のとおりです。
<input type="text" placeholder="enter your text" onfocus="this.placeholder=''" onblur="this.placeholder='enter your text'" />
CSSは私のために働いた:
input:focus::-webkit-input-placeholder {
color: transparent;
}
プレースホルダーをサポートしないブラウザーの場合は、これを使用できます: https://github.com/mathiasbynens/jquery-placeholder 。通常HTML5の場合と同様にプレースホルダー属性を追加し、プラグイン$('[placeholder]').placeholder();
を呼び出します。次に、Rohan Kumarのコードを使用すると、クロスブラウザーになります。
これを試してみてください
$('input,textarea').focus(function()
{
$(this).attr('placeholder','');
});
$('input').focus(function()
{
$(this).attr('placeholder','');
});
$("input[placeholder]").each(function () {
$(this).attr("data-placeholder", this.placeholder);
$(this).bind("focus", function () {
this.placeholder = '';
});
$(this).bind("blur", function () {
this.placeholder = $(this).attr("data-placeholder");
});
});
これは、フォーカスではなくクリックに関する私のソリューションです:
$(document).on('click','input',function(){
var $this = $(this);
var place_val = $this.attr('placeholder');
if(place_val != ''){
$this.data('placeholder',place_val).removeAttr('placeholder');
}
}).on('blur','input',function(){
var $this = $(this);
var place_val = $this.data('placeholder');
if(place_val != ''){
$this.attr('placeholder',place_val);
}
});
このための非常にシンプルで包括的なソリューションは、Mozilla、IE、Chrome、OperaおよびSafariで動作します:
<input type="text" placeholder="your placeholder" onfocus="this.placeholder=''" onblur="this.placeholder='your placeholder'" />
$('*').focus(function(){
$(this).attr("placeholder",'');
});