0

この質問をするのが間違っている場合は、反対票を投じないでください。次のような TextBox があります。

<input class="login-inpt" runat="server" name="loginName" type="text" value="User Name" />

現在、デフォルト値を保持しています。TextBox をクリックすると、デフォルト値がクリアされ、カーソルに置き換えられます。

4

7 に答える 7

8

新しいブラウザ (IE>9) の場合:

<input type="text" id="userName" placeholder="User Name" />

古い場合:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Placeholder support</title>
</head>
<body>
    <input type="text" id="userName" placeholder="User Name" />

    <script src="../js/vendor/jquery-1.10.2.min.js"></script>
    <script src="../js/vendor/jquery-migrate-1.2.1.js"></script>
    <script src="../js/vendor/modernizr-latest.js"></script>
    <script src="../js/placeholder.js"></script>
</body>
</html>

placeholder.js (jQuery、Modernizr)

var Placeholder = (function ($, document) {

    /* Static Content */
    var _$document = $(document);

    /* Events */
    var _initPlaceholders = function () {
        _$document.find('input:text').each(function () {
            var $this = $(this);
            $this.css({ color: '#888' }).val($this.attr('placeholder'));
        });
    };

    var _placeholderEvent = function () {
        var $input = $(this), placeholderValue = $input.attr('placeholder');

        if ($input.val() === placeholderValue) {
            $input.css({ color: '#000' }).val('');
            return;
        }

        if ($input.val() === '') {
            $input.css({ color: '#888' }).val(placeholderValue);
        }
    };

    var _bindEvents = function () {
        if (!Modernizr.input.placeholder) {
            _initPlaceholders();
            _$document.on('focus blur', 'input:text', _placeholderEvent);
        }
    };

    var init = function () {
        _bindEvents();
    };

    return {
        init: init
    };
})(jQuery, document);

Placeholder.init();
于 2013-08-29T18:54:36.667 に答える
1

HTML:

<input type="text" value="user name" id="userName" />

jQuery の場合:

$(function() {
    $('#userName').click(function() {
        $(this).val('').unbind('click');
    });
});

編集:ここにデモがあります

于 2013-08-29T14:13:37.500 に答える
0

あなたはすでに良い答えを得ていますが、あなたが初心者であれば、ライブラリなしでどのように機能するのか興味があるかもしれません.

HTML は次のとおりです。

<input id="textBox" class="textBox phrase" type="text" value="Enter Your Text..">

クラスとIDを設定する必要はありません。それらのいずれかを選択できます

JavaScript は次のとおりです。

var textBox = document.getElementById('textBox'), //probably the fastest method
/**************************additionally possible****************************

var textBox = document.getElementsByTagName('input')[0], //returns HTMLInputElement list (since we've got only one we chose the first one)
or
var textBox = document.querySelectorAll('textBox'), //works almost the same way as jquery does except you don't get all jquerys functionality
or
var textBox = document.getElementsByClassName('textBox')[0], //i guess its a least supported method from the list

***************************************************************************/    
    //text you want to choose for you input
    phrase = "Enter Your Text..";

function addEvent(el, ev, fn) {
    //checking method support
    //almost every browser except for ie
    if(window.addEventListener) {
        el.addEventListener(ev, fn, false);
    } 
    //ie
    else if(window.attachEvent) {
        el.attachEvent('on' + ev, fn);
        el.dettachEvent('on' + ev, fn);
    } 
}

addEvent(textBox, 'focus', function (){
    //cross browser event object
    var e = e || window.event,
        target = e.target;
    //if the text in your text box is your phrase then clean it else leave it untouched
    target.value = target.value === phrase ? "" : target.value;
});

addEvent(textBox, 'blur', function (){
    //cross browser event object
    var e = e || window.event,
        target = e.target;
    //if your text box is not empty then leave it else put your phrase in
    target.value = target.value ? target.value : phrase;
});
于 2013-09-03T21:48:01.127 に答える
0
$('.login-inpt').focus(function() {
   $(this).val('');
});
$('.login-inpt').focusout(function() {
   $(this).val('User Name');
});

ここをチェックしてくださいhttp://jsfiddle.net/TDUKN/

于 2013-09-03T22:10:13.153 に答える
0

次を属性として入力タグに追加します。

onfocus="if(this.value=='A new value') this.value='';"

From: javascriptを使ってテキストボックスをクリアする方法

于 2013-08-29T14:14:29.530 に答える