私は小さな問題を抱えています、入力ボックスのplaceholder
属性はIE 8-9ではサポートされていません。
私のプロジェクトでこのサポートを行うための最良の方法は何ですか(ASP Net)。私はjQueryを使っています。他の外部ツールを使う必要がありますか?
http://www.hagenburger.net/BLOG/HTML5-Input-Placeholder-Fix-With-jQuery.html 良い解決策ですか?
あなたはこのjQueryプラグインを使うことができます: https://github.com/mathiasbynens/jquery-placeholder
しかし、あなたのリンクも良い解決策のようです。
あなたはこれらのpolyfillsのどれでも使うことができます:
これらのスクリプトはそれをサポートしないブラウザでplaceholder
属性のサポートを追加するでしょう、そしてそれらはjQueryを必要としません!
$。Browser.msieは最新のJQueryにはもう含まれていません... $。supportを使用する必要があります
以下のように:
<script>
(function ($) {
$.support.placeholder = ('placeholder' in document.createElement('input'));
})(jQuery);
//fix for IE7 and IE8
$(function () {
if (!$.support.placeholder) {
$("[placeholder]").focus(function () {
if ($(this).val() == $(this).attr("placeholder")) $(this).val("");
}).blur(function () {
if ($(this).val() == "") $(this).val($(this).attr("placeholder"));
}).blur();
$("[placeholder]").parents("form").submit(function () {
$(this).find('[placeholder]').each(function() {
if ($(this).val() == $(this).attr("placeholder")) {
$(this).val("");
}
});
});
}
});
</script>
あなたがjqueryを使うなら、あなたはこれのようにすることができます。このサイトから Jquery付きのプレースホルダー
$('[placeholder]').parents('form').submit(function() {
$(this).find('[placeholder]').each(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
}
})
});
これらは代替リンクです
私が試したいくつかのプラグインとの互換性の問題がありました。これがテキスト入力のプレースホルダーをサポートする最も簡単な方法のように思えます。
function placeholders(){
//On Focus
$(":text").focus(function(){
//Check to see if the user has modified the input, if not then remove the placeholder text
if($(this).val() == $(this).attr("placeholder")){
$(this).val("");
}
});
//On Blur
$(":text").blur(function(){
//Check to see if the use has modified the input, if not then populate the placeholder back into the input
if( $(this).val() == ""){
$(this).val($(this).attr("placeholder"));
}
});
}
$(function(){
if($.browser.msie && $.browser.version <= 9){
$("[placeholder]").focus(function(){
if($(this).val()==$(this).attr("placeholder")) $(this).val("");
}).blur(function(){
if($(this).val()=="") $(this).val($(this).attr("placeholder"));
}).blur();
$("[placeholder]").parents("form").submit(function() {
$(this).find('[placeholder]').each(function() {
if ($(this).val() == $(this).attr("placeholder")) {
$(this).val("");
}
})
});
}
});
これを試して
私はこれを使います、それはJavascriptだけです。
私は単に値を持つinput要素を持っています、そしてユーザーがinput要素をクリックするとき、それは値のないinput要素にそれを変えます。
CSSを使ってテキストの色を簡単に変えることができます。プレースホルダの色はid #IEinputの色で、入力したテキストの色はid #emailの色です。プレースホルダーをサポートしていないIEのバージョンでもgetElementsByClassNameはサポートされていないため、getElementsByClassNameを使用しないでください。
元のパスワード入力のタイプをテキストに設定することで、パスワード入力にプレースホルダーを使用できます。
Tinker: http://tinker.io/4f7c5/1 - JSfiddleサーバーがダウンしています。
*私の悪い英語を残念に思う
JAVASCRIPT
function removeValue() {
document.getElementById('mailcontainer')
.innerHTML = "<input id=\"email\" type=\"text\" name=\"mail\">";
document.getElementById('email').focus(); }
HTML
<span id="mailcontainer">
<input id="IEinput" onfocus="removeValue()" type="text" name="mail" value="mail">
</span>
ここに着陸する他の人たちのために。これは私のために働いたものです:
//jquery polyfill for showing place holders in IE9
$('[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('');
}
})
});
これをscript.jsファイルに追加するだけです。礼儀 http://www.hagenburger.net/BLOG/HTML5-Input-Placeholder-Fix-With-jQuery.html
<input type="text" name="Name" value="Name" onfocus="this.value = ''" onblur=" if(this.value = '') { value = 'Name'}" />
これは、IE 8以下のプレースホルダーを作成するJavaScript関数です。これはパスワードに対しても機能します。
/* Function to add placeholders to form elements on IE 8 and below */
function add_placeholders(fm) {
for (var e = 0; e < document.fm.elements.length; e++) {
if (fm.elements[e].placeholder != undefined &&
document.createElement("input").placeholder == undefined) { // IE 8 and below
fm.elements[e].style.background = "transparent";
var el = document.createElement("span");
el.innerHTML = fm.elements[e].placeholder;
el.style.position = "absolute";
el.style.padding = "2px;";
el.style.zIndex = "-1";
el.style.color = "#999999";
fm.elements[e].parentNode.insertBefore(el, fm.elements[e]);
fm.elements[e].onfocus = function() {
this.style.background = "yellow";
}
fm.elements[e].onblur = function() {
if (this.value == "") this.style.background = "transparent";
else this.style.background = "white";
}
}
}
}
add_placeholders(document.getElementById('fm'))
<form id="fm">
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<textarea name="description" placeholder="Description"></textarea>
</form>
以下のコードを追加すれば完了です。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script src="https://code.google.com/p/jquery-placeholder-js/source/browse/trunk/jquery.placeholder.1.3.min.js?r=6"></script>
<script type="text/javascript">
// Mock client code for testing purpose
$(function(){
// Client should be able to add another change event to the textfield
$("input[name='input1']").blur(function(){ alert("Custom event triggered."); });
// Client should be able to set the field's styles, without affecting place holder
$("textarea[name='input4']").css("color", "red");
// Initialize placeholder
$.Placeholder.init();
// or try initialize with parameter
//$.Placeholder.init({ color : 'rgb(255, 255, 0)' });
// call this before form submit if you are submitting by JS
//$.Placeholder.cleanBeforeSubmit();
});
</script>
完全なコードとデモをからダウンロードしてください https://code.google.com/p/jquery-placeholder-js/downloads/detail?name=jquery.placeholder.1.3.Zip
私はこのリンクのコードを使用しました http://dipaksblogonline.blogspot.com/2012/02/html5-placeholder-in-ie7-and-ie8-fixed.html
しかし、ブラウザの検出に私は使用しました:
if (navigator.userAgent.indexOf('MSIE') > -1) {
//Your placeholder support code here...
}
ほとんどのソリューションはjQueryを使用しているか、または私がmootoolsのために自分用のスニペットを作成したいと思っていたので、これでは満足できません。
function fix_placeholder(container){
if(container == null) container = document.body;
if(!('placeholder' in document.createElement('input'))){
var inputs = container.getElements('input');
Array.each(inputs, function(input){
var type = input.get('type');
if(type == 'text' || type == 'password'){
var placeholder = input.get('placeholder');
input.set('value', placeholder);
input.addClass('__placeholder');
if(!input.hasEvent('focus', placeholder_focus)){
input.addEvent('focus', placeholder_focus);
}
if(!input.hasEvent('blur', placeholder_blur)){
input.addEvent('blur', placeholder_blur);
}
}
});
}
}
function placeholder_focus(){
var input = $(this);
if(input.get('class').contains('__placeholder') || input.get('value') == ''){
input.removeClass('__placeholder');
input.set('value', '');
}
}
function placeholder_blur(){
var input = $(this);
if(input.get('value') == ''){
input.addClass('__placeholder');
input.set('value', input.get('placeholder'));
}
}
私はそれが他よりももう少し詳細に見えるが、それはうまく機能することを告白します。 __ placeholderは、プレースホルダのテキストの色を空想的にするためのccsクラスです。
window.addEvent( 'domready'、...の中でfix_placeholderを使い、さらにポップアップのように追加されたコードにも使いました。
あなたがそれを好むことを願っています。
敬具。