使用 jQuery 实现,您可以在提交时轻松删除默认值。下面是一个例子:
$('#submit').click(function(){
var text = this.attr('placeholder');
var inputvalue = this.val(); // you need to collect this anyways
if (text === inputvalue) inputvalue = "";
// $.ajax(... // do your ajax thing here
});
我知道您正在寻找覆盖,但您可能更喜欢这条路线的轻松(现在知道我上面写的内容)。如果是这样,那么我为自己的项目编写了这个,它工作得非常好(需要 jQuery),并且只需要几分钟就可以为您的整个站点实现。它首先提供灰色文本,焦点时为浅灰色,打字时为黑色。只要输入字段为空,它还会提供占位符文本。
首先设置您的表单并在输入标签中包含您的占位符属性。
<input placeholder="enter your email here">
只需复制此代码并将其保存为 placeholder.js。
(function( $ ){
$.fn.placeHolder = function() {
var input = this;
var text = input.attr('placeholder'); // make sure you have your placeholder attributes completed for each input field
if (text) input.val(text).css({ color:'grey' });
input.focus(function(){
if (input.val() === text) input.css({ color:'lightGrey' }).selectRange(0,0).one('keydown', function(){
input.val("").css({ color:'black' });
});
});
input.blur(function(){
if (input.val() == "" || input.val() === text) input.val(text).css({ color:'grey' });
});
input.keyup(function(){
if (input.val() == "") input.val(text).css({ color:'lightGrey' }).selectRange(0,0).one('keydown', function(){
input.val("").css({ color:'black' });
});
});
input.mouseup(function(){
if (input.val() === text) input.selectRange(0,0);
});
};
$.fn.selectRange = function(start, end) {
return this.each(function() {
if (this.setSelectionRange) { this.setSelectionRange(start, end);
} else if (this.createTextRange) {
var range = this.createTextRange();
range.collapse(true);
range.moveEnd('character', end);
range.moveStart('character', start);
range.select();
}
});
};
})( jQuery );
仅用于一个输入
$('#myinput').placeHolder(); // just one
当浏览器不支持 HTML5 占位符属性时,我建议您在网站上的所有输入字段上实现它:
var placeholder = 'placeholder' in document.createElement('input');
if (!placeholder) {
$.getScript("../js/placeholder.js", function() {
$(":input").each(function(){ // this will work for all input fields
$(this).placeHolder();
});
});
}