これは非常によく知られた問題のようですが、Googleで見つけたすべての解決策は、新しくダウンロードしたIE9では動作しません。
Placeholder
およびinput
タグでtextarea
プロパティを有効にするためのお気に入りの方法はどれですか?
オプション:私はそれで多くの時間を失い、まだrequired
プロパティを探していませんでした。これについて何かアドバイスはありますか?もちろん、PHPで値を確認できますが、ユーザーを支援するために、このプロパティは非常に便利です。
HTML5プレースホルダーjQueryプラグイン
-by Mathias Bynens ( HTML5 Boilerplate および jsPerf の共同編集者)
https://github.com/mathiasbynens/jquery-placeholder
デモと例
http://mathiasbynens.be/demo/placeholder
p.s
このプラグインを何度も使用しましたが、うまく機能します。また、フォームを送信するときに値としてプレースホルダーテキストを送信しません(...他のプラグインで見つけた本当の痛み)。
私はこれがあなたが探しているものだと思う: jquery-html5-placeholder-fix
このソリューションでは、( modernizr による)機能検出を使用して、プレースホルダーがサポートされているかどうかを判断します。そうでない場合、サポートを追加します(jQuery経由)。
Jqueryまたはmodenizerを使用せずにそれを実行したい場合は、以下のコードを使用できます。
(function(){
"use strict";
//shim for String's trim function..
function trim(string){
return string.trim ? string.trim() : string.replace(/^\s+|\s+$/g, "");
}
//returns whether the given element has the given class name..
function hasClassName(element, className){
//refactoring of Prototype's function..
var elClassName = element.className;
if(!elClassName)
return false;
var regex = new RegExp("(^|\\s)" + className + "(\\s|$)");
return regex.test(element.className);
}
function removeClassName(element, className){
//refactoring of Prototype's function..
var elClassName = element.className;
if(!elClassName)
return;
element.className = elClassName.replace(
new RegExp("(^|\\s+)" + className + "(\\s+|$)"), ' ');
}
function addClassName(element, className){
var elClassName = element.className;
if(elClassName)
element.className += " " + className;
else
element.className = className;
}
//strings to make event attachment x-browser..
var addEvent = document.addEventListener ?
'addEventListener' : 'attachEvent';
var eventPrefix = document.addEventListener ? '' : 'on';
//the class which is added when the placeholder is being used..
var placeHolderClassName = 'usingPlaceHolder';
//allows the given textField to use it's placeholder attribute
//as if it's functionality is supported natively..
window.placeHolder = function(textField){
//don't do anything if you get it for free..
if('placeholder' in document.createElement('input'))
return;
//don't do anything if the place holder attribute is not
//defined or is blank..
var placeHolder = textField.getAttribute('placeholder');
if(!placeHolder)
return;
//if it's just the empty string do nothing..
placeHolder = trim(placeHolder);
if(placeHolder === '')
return;
//called on blur - sets the value to the place holder if it's empty..
var onBlur = function(){
if(textField.value !== '') //a space is a valid input..
return;
textField.value = placeHolder;
addClassName(textField, placeHolderClassName);
};
//the blur event..
textField[addEvent](eventPrefix + 'blur', onBlur, false);
//the focus event - removes the place holder if required..
textField[addEvent](eventPrefix + 'focus', function(){
if(hasClassName(textField, placeHolderClassName)){
removeClassName(textField, placeHolderClassName);
textField.value = "";
}
}, false);
//the submit event on the form to which it's associated - if the
//placeholder is attached set the value to be empty..
var form = textField.form;
if(form){
form[addEvent](eventPrefix + 'submit', function(){
if(hasClassName(textField, placeHolderClassName))
textField.value = '';
}, false);
}
onBlur(); //call the onBlur to set it initially..
};
}());
それを使用したいテキストフィールドごとにplaceHolder(HTMLInputElement)
を実行する必要がありますが、それに合わせて変更できると思います!また、ロード時だけでなくこの方法で行うと、ページのロード時にDOMにない入力に対して機能させることができます。
これは、クラスusingPlaceHolder
を入力要素に適用することで機能するため、これを使用してスタイルを設定できます(たとえば、ルール.usingPlaceHolder { color: #999; font-style: italic; }
を追加して見栄えを良くします)。
これがはるかに優れたソリューションです。 http://bavotasan.com/2011/html5-placeholder-jquery-fix/ IE10のブラウザーでのみ動作するように少し採用しました
<!DOCTYPE html>
<!--[if lt IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]><html class="no-js lt-ie10 lt-ie9" lang="en"> <![endif]-->
<!--[if IE 9]><html class="no-js lt-ie10" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--><html class="no-js" lang="en"><!--<![endif]-->
<script>
// Placeholder fix for IE
$('.lt-ie10 [placeholder]').focus(function() {
var i = $(this);
if(i.val() == i.attr('placeholder')) {
i.val('').removeClass('placeholder');
if(i.hasClass('password')) {
i.removeClass('password');
this.type='password';
}
}
}).blur(function() {
var i = $(this);
if(i.val() == '' || i.val() == i.attr('placeholder')) {
if(this.type=='password') {
i.addClass('password');
this.type='text';
}
i.addClass('placeholder').val(i.attr('placeholder'));
}
}).blur().parents('form').submit(function() {
//if($(this).validationEngine('validate')) { // If using validationEngine
$(this).find('[placeholder]').each(function() {
var i = $(this);
if(i.val() == i.attr('placeholder'))
i.val('');
i.removeClass('placeholder');
})
//}
});
</script>
...
</html>
説明を入力する場合は、これを使用できます。これはIE 9および他のすべてのブラウザーで機能します。
<input type="text" onclick="if(this.value=='CVC2: '){this.value='';}" onblur="if(this.value==''){this.value='CVC2: ';}" value="CVC2: "/>
私は遅れていることは知っていますが、頭にタグを挿入する解決策を見つけました:
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/> <!--FIX jQuery INTERNET Explorer-->
mordernizr を使用して、プレースホルダーをサポートしていないブラウザーを検出し、それらを修正するためにこの短いコードを作成しました。
//If placeholder is not supported
if (!Modernizr.input.placeholder){
//Loops on inputs and place the placeholder attribute
//in the textbox.
$("input[type=text]").each( function() {
$(this).val($(this).attr('placeholder'));
})
}
iE-9で動作させるには、以下で使用してください
JQueryには以下を含める必要があります。
jQuery(function() {
jQuery.support.placeholder = false;
webkit_type = document.createElement('input');
if('placeholder' in webkit_type) jQuery.support.placeholder = true;});
$(function() {
if(!$.support.placeholder) {
var active = document.activeElement;
$(':text, textarea, :password').focus(function () {
if (($(this).attr('placeholder')) && ($(this).attr('placeholder').length > 0) && ($(this).attr('placeholder') != '') && $(this).val() == $(this).attr('placeholder')) {
$(this).val('').removeClass('hasPlaceholder');
}
}).blur(function () {
if (($(this).attr('placeholder')) && ($(this).attr('placeholder').length > 0) && ($(this).attr('placeholder') != '') && ($(this).val() == '' || $(this).val() == $(this).attr('placeholder'))) {
$(this).val($(this).attr('placeholder')).addClass('hasPlaceholder');
}
});
$(':text, textarea, :password').blur();
$(active).focus();
$('form').submit(function () {
$(this).find('.hasPlaceholder').each(function() { $(this).val(''); });
});
}
});
CSSスタイルには以下を含める必要があります。
.hasPlaceholder {color: #aaa;}
パーティーに少し遅れましたが、私は Modernizr を利用する、実績のある信頼できるJSを使用します。コピー/貼り付けして、任意のプロジェクトに適用できます。毎回動作します:
// Placeholder fallback
if(!Modernizr.input.placeholder){
$('[placeholder]').focus(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
input.removeClass('placeholder');
}
}).blur(function() {
var input = $(this);
if (input.val() == '' || input.val() == input.attr('placeholder')) {
input.addClass('placeholder');
input.val(input.attr('placeholder'));
}
}).blur();
$('[placeholder]').parents('form').submit(function() {
$(this).find('[placeholder]').each(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
}
})
});
}
私は通常 http://cdnjs.com/ を非常に強く考えており、リストされています:
// cdnjs.cloudflare.com/ajax/libs/placeholder-shiv/0.2/placeholder-shiv.js
誰のコードかはわかりませんが、簡単に見えます:
document.observe('dom:loaded', function(){
var _test = document.createElement('input');
if( ! ('placeholder' in _test) ){
//we are in the presence of a less-capable browser
$$('*[placeholder]').each(function(Elm){
if($F(Elm) == ''){
var originalColor = Elm.getStyle('color');
var hint = Elm.readAttribute('placeholder');
Elm.setStyle('color:gray').setValue(hint);
Elm.observe('focus',function(evt){
if($F(this) == hint){
this.clear().setStyle({color: originalColor});
}
});
Elm.observe('blur', function(evt){
if($F(this) == ''){
this.setValue(hint).setStyle('color:gray');
}
});
}
}).first().up('form').observe('submit', function(evt){
evt.stop();
this.select('*[placeholder]').each(function(Elm){
if($F(Elm) == Elm.readAttribute('placeholder')) Elm.clear();
});
this.submit();
});
}
});
インターネットで検索すると、この問題を処理するための簡単なjqueryコードが見つかりました。私の側では、それは解決され、9で動作しました。
$("input[placeholder]").each(function () {
var $this = $(this);
if($this.val() == ""){
$this.val($this.attr("placeholder")).focus(function(){
if($this.val() == $this.attr("placeholder")) {
$this.val("");
}
}).blur(function(){
if($this.val() == "") {
$this.val($this.attr("placeholder"));
}
});
}
});