我做了这个简单的函数来在不支持它的浏览器中添加占位符:
问题是:当用户在其中单击时,如何向该功能添加删除占位符的可能性?
尝试使用removeAttr() 之类的,
$('input,textarea').focus(function(){
$(this).removeAttr('placeholder');
});
要placeholder value
再次blur()
尝试这个,
$('input,textarea').focus(function(){
$(this).data('placeholder',$(this).attr('placeholder'))
.attr('placeholder','');
}).blur(function(){
$(this).attr('placeholder',$(this).data('placeholder'));
});
无需使用 javascript 函数来完成此操作,更简单的解决方案是:
<input type="text" placeholder="enter your text" onfocus="this.placeholder=''" onblur="this.placeholder='enter your text'" />
CSS为我工作:
input:focus::-webkit-input-placeholder {
color: transparent;
}
$("input[placeholder]").each(function () {
$(this).attr("data-placeholder", this.placeholder);
$(this).bind("focus", function () {
this.placeholder = '';
});
$(this).bind("blur", function () {
this.placeholder = $(this).attr("data-placeholder");
});
});
一个非常简单而全面的解决方案适用于 Mozila、IE、Chrome、Opera 和 Safari:
<input type="text" placeholder="your placeholder" onfocus="this.placeholder=''" onblur="this.placeholder='your placeholder'" />
试试这个希望它有帮助
$('input,textarea').focus(function()
{
$(this).attr('placeholder','');
});
$('input').focus(function()
{
$(this).attr('placeholder','');
});
$('*').focus(function(){
$(this).attr("placeholder",'');
});
对于不支持占位符的浏览器,您可以使用:
https ://github.com/mathiasbynens/jquery-placeholder 。像 HTML5 一样正常添加占位符属性,然后调用这个插件:$('[placeholder]').placeholder();
。然后使用 Rohan Kumar 的代码,将是跨浏览器的。
这是我点击不关注焦点的解决方案:
$(document).on('click','input',function(){
var $this = $(this);
var place_val = $this.attr('placeholder');
if(place_val != ''){
$this.data('placeholder',place_val).removeAttr('placeholder');
}
}).on('blur','input',function(){
var $this = $(this);
var place_val = $this.data('placeholder');
if(place_val != ''){
$this.attr('placeholder',place_val);
}
});