この質問をするのが間違っている場合は、反対票を投じないでください。次のような TextBox があります。
<input class="login-inpt" runat="server" name="loginName" type="text" value="User Name" />
現在、デフォルト値を保持しています。TextBox をクリックすると、デフォルト値がクリアされ、カーソルに置き換えられます。
この質問をするのが間違っている場合は、反対票を投じないでください。次のような TextBox があります。
<input class="login-inpt" runat="server" name="loginName" type="text" value="User Name" />
現在、デフォルト値を保持しています。TextBox をクリックすると、デフォルト値がクリアされ、カーソルに置き換えられます。
新しいブラウザ (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();
HTML:
<input type="text" value="user name" id="userName" />
jQuery の場合:
$(function() {
$('#userName').click(function() {
$(this).val('').unbind('click');
});
});
編集:ここにデモがあります
あなたはすでに良い答えを得ていますが、あなたが初心者であれば、ライブラリなしでどのように機能するのか興味があるかもしれません.
<input id="textBox" class="textBox phrase" type="text" value="Enter Your Text..">
クラスとIDを設定する必要はありません。それらのいずれかを選択できます
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;
});
$('.login-inpt').focus(function() {
$(this).val('');
});
$('.login-inpt').focusout(function() {
$(this).val('User Name');
});
ここをチェックしてくださいhttp://jsfiddle.net/TDUKN/
次を属性として入力タグに追加します。
onfocus="if(this.value=='A new value') this.value='';"