1

html:

<div class="div-input">
    <input type="text" id="loginname" name="username" value="" maxlength="25" 
        class="form-input" placeholder="Username"
    />
</div>
<div class="div-input">
    <input type="password" id="loginpassword" name="password" maxlength="25" 
        class="form-input" placeholder="Password"
    />
</div>
<div>
    <input type="submit" name="login" value="LOGIN" class="form-button" 
        onclick="return check_login(&quot;/&quot;)" 
    />
    <span id="logInfo"></span><span style="display: none;" id="overlay"></span>
    <span style="display: none;" id="popup">
        <img src="/public/images/loading.gif" />
    </span>
</div>

我的问题是占位符在所有浏览器中都可以正常工作,对于 IE8 和 IE9,我使用 Javascript 来解决它,但在 IE10 中,占位符可以正常工作,但方式不正确。

  1. 发生的情况是,在页面加载时,如果Placeholder是占位符,我只能Placeholde在 IE10 中作为占位符(最后一个字母消失),但如果我在输入框和页面外单击,它会显示正确的占位符为Placeholder.

  2. 如果我在输入字段中键入任何单词,我会在输入字段的角落得到一个十字符号(关闭符号),这仅在 IE10 中发生。

4

3 回答 3

1

听起来您的 javascript 正在破坏本机 IE10 占位符功能。

要对此进行测试并希望修复它,请将您为占位符编写的 javascript 包装在条件语句中,以便它仅适用于 IE9 及更低版本。

<!--[if lt IE 9]>
<script>
  document.createElement('header');
  document.createElement('nav');
</script>
<![endif]-->

或者,Mathias Bynens 提供了一个非常不错的 jquery 插件,可以免费使用并为您处理所有这些: https ://github.com/mathiasbynens/jquery-placeholder

一些 CMS 已经有一个使用此代码构建的插件。Wordpress 插件在这里:http ://wordpress.org/plugins/html5-placeholder-polyfill/

于 2014-02-26T21:17:17.617 回答
-2

我不确定 ie10 中输入支持的 placeHolder 属性,但如果你想在 ie 中使用占位符,你可以通过 jquery 来执行此操作,如下所示。

if(navigator.appVersion.match(/MSIE [\d.]+/)){
    var placeholderText = 'Some Placeholder Text';
    $('#loginname').val(placeholderText);
    $('#loginname').blur(function(){
        $(this).val() == '' ? $(this).val(placeholderText) : false;
    });
    $('#loginname').focus(function(){
        $(this).val() == placeholderText ? $(this).val('') : false;
    });
}

你也可以对密码做同样的事情..

你有没有尝试过使用代码有点像这样......我相信应该可以......

$('#loginname').attr('placeholder', 'username');
$('#password').attr('placeholder', 'password');
于 2013-10-11T07:12:10.090 回答
-2

试试这个,浏览器中占位符的 jquery pluin 不完全支持它。留下你的 php 代码并添加这个 js 它应该可以工作:

(function($) {

/**
 * Spoofs placeholders in browsers that don't support them (eg Firefox 3)
 * 
 * Copyright 2011 Dan Bentley
 * Licensed under the Apache License 2.0
 *
 * Author: Dan Bentley [github.com/danbentley]
 */

// Return if native support is available.
if ("placeholder" in document.createElement("input")) return;

$(document).ready(function(){
    $(':input[placeholder]').not(':password').each(function() {
        setupPlaceholder($(this));
    });

    $(':password[placeholder]').each(function() {
        setupPasswords($(this));
    });

    $('form').submit(function(e) {
        clearPlaceholdersBeforeSubmit($(this));
    });
});

function setupPlaceholder(input) {

    var placeholderText = input.attr('placeholder');

    setPlaceholderOrFlagChanged(input, placeholderText);
    input.focus(function(e) {
        if (input.data('changed') === true) return;
        if (input.val() === placeholderText) input.val('');
    }).blur(function(e) {
        if (input.val() === '') input.val(placeholderText); 
    }).change(function(e) {
        input.data('changed', input.val() !== '');
    });
}

function setPlaceholderOrFlagChanged(input, text) {
    (input.val() === '') ? input.val(text) : input.data('changed', true);
}

function setupPasswords(input) {
    var passwordPlaceholder = createPasswordPlaceholder(input);
    input.after(passwordPlaceholder);

    (input.val() === '') ? input.hide() : passwordPlaceholder.hide();

    $(input).blur(function(e) {
        if (input.val() !== '') return;
        input.hide();
        passwordPlaceholder.show();
    });

    $(passwordPlaceholder).focus(function(e) {
        input.show().focus();
        passwordPlaceholder.hide();
    });
}

function createPasswordPlaceholder(input) {
    return $('<input>').attr({
        placeholder: input.attr('placeholder'),
        value: input.attr('placeholder'),
        id: input.attr('id'),
        readonly: true
    }).addClass(input.attr('class'));
}

function clearPlaceholdersBeforeSubmit(form) {
    form.find(':input[placeholder]').each(function() {
        if ($(this).data('changed') === true) return;
        if ($(this).val() === $(this).attr('placeholder')) $(this).val('');
    });
}
})(jQuery);

然后,您必须通过以下方式在您的 php 页面或另一个 js 中调用该插件:

 $(function() {
    // Invoke the plugin
    $('input, textarea').placeholder();       
   });

希望这可以帮助!

于 2013-10-11T07:21:08.713 回答