入力ボックスフォーカス表示/非表示valueを取得
2025 ワード
HTML:
JS:
転載先:https://www.cnblogs.com/baixc/p/3663891.html
<input type="text" class="hint" id="hint" value=" 、 、 , :Http://item.taobao.com..." name="q">
JS:
$(function() {
var inputEl = $('#hint'),
defVal = inputEl.val();
inputEl.bind({
focus: function() {
var _this = $(this);
if (_this.val() == defVal) {
_this.val('').css({'color':'black'});
}
},
blur: function() {
var _this = $(this);
if (_this.val() == '') {
_this.val(defVal).css({'color':'#999999'});
}
}
});
})
転載先:https://www.cnblogs.com/baixc/p/3663891.html