0

我的应用程序需要文本字段和 textarea 字段的占位符。我知道 Internet Explorer 不支持占位符。我环顾四周,发现了一些仅适用于文本字段的后备代码。我怎样才能让它也适用于 textarea。

代码:

jQuery(function() {
    jQuery.support.placeholder = false;
    test = document.createElement('input');
    if('placeholder' in test) jQuery.support.placeholder = true;
});

$(function() {
    if(!$.support.placeholder) { 
        var active = document.activeElement;
        $('input[type=text], textarea').focus(function () {
            if ($(this).attr('placeholder') != '' && $(this).val() == $(this).attr('placeholder')) {
                $(this).val('').removeClass('hasPlaceholder');
            }
        }).blur(function () {
            if ($(this).attr('placeholder') != '' && ($(this).val() == '' || $(this).val() == $(this).attr('placeholder'))) {
                $(this).val($(this).attr('placeholder')).addClass('hasPlaceholder');
            }
        });
        $('input[type="text"], textarea').blur();
        $(active).focus();
        $('form').submit(function () {
            $(this).find('.hasPlaceholder').each(function() { $(this).val(''); });
        });
    }
});

HTML:

                <li>
                    <input type="text" placeholder="To:" id="to" autocapitalize="off" autocorrect="off" autocomplete="off" />
                </li>
                <li>
                    <textarea placeholder="Message:" id="body" rows="10" cols="30" autocapitalize="off" autocorrect="off" autocomplete="off"></textarea>
                </li>
4

4 回答 4

6

更改$(':text')$('input[type="text"], textarea')

或者,这个现有的 jQuery 插件:

https://github.com/mathiasbynens/jquery-placeholder

适用于文本区域和多种类型的输入字段,包括密码字段

于 2012-07-31T20:36:20.927 回答
2
<script type="text/javascript">
 $(function() {
    if(!$.support.placeholder) { 
        var active = document.activeElement;
        $('input[type="text"], textarea').focus(function () {
            if ($(this).attr('placeholder') != '' && $(this).val() == $(this).attr('placeholder')) {
                $(this).val('').removeClass('hasPlaceholder');
            }
        }).blur(function () {
            if ($(this).attr('placeholder') != '' && ($(this).val() == '' || $(this).val() == $(this).attr('placeholder'))) {
                $(this).val($(this).attr('placeholder')).addClass('hasPlaceholder');
            }
        });
        $('input[type="text"], textarea').blur();
        $(active).focus();
        $('form').submit(function () {
            $(this).find('.hasPlaceholder').each(function() { $(this).val(''); });
        });
    }
});
</script>
于 2013-06-10T12:16:31.020 回答
0

它正在使用文本选择器,将其更改为也使用 textarea。

$(':text')

应该

$(':text, textarea')

或为了更好的性能使用

$('input[type=text], textarea')
于 2012-07-31T20:34:07.293 回答
0

看起来您需要替换:text:text,textarea.

于 2012-07-31T20:35:26.310 回答