当前位置:首页> 正文
ie placeholder属性的兼容性问题解决方法
html 5 有个很棒的属性,placeholder,在鼠标聚焦到上面时候,提示文字会消失,失去焦点之后,又会出现:
但是在不支持html5的低版本的浏览器中,placeholder属性是无效的,为了解决这个问题,因此,人为的去实现placeholder属性:
复制代码代码如下:
//placeholder功能实现
var placeholder = {
add: function (el) {
if (!(’placeholder’ in document.createElement(’input’))) {
var self = placeholder;
el.each(function (e) {
if (IsEmpty(e.value()) || e.value() == e.attr(’placeholder’)) {
e.value(e.attr(’placeholder’));
e.css(’color’, ’gray’);
}
else {
e.css(’color’, ’black’);
}
});
el.bind(’focus’, self._onfocus);
el.bind(’click’, self._onfocus);
el.bind(’blur’, self._onblur);
el.bind(’keyup’, self._onkeyup);
}
},
remove: function (el) {
if (!(’placeholder’ in document.createElement(’input’))) {
var self = placeholder;
el.unbind(’focus’, self._onfocus);
el.unbind(’click’, self._onfocus);
el.unbind(’blur’, self._onblur);
}
},
check: function (el) {
if (!(’placeholder’ in document.createElement(’input’))) {
el.each(function (tar) {
if (IsEmpty(tar.value())) {
tar.value(tar.attr(’placeholder’));
}
});
}
},
clear: function () {
if (!(’placeholder’ in document.createElement(’input’))) {
$(’input[type="text"]’).each(function (el) {
if (el.value() == el.attr(’placeholder’)) {
el.value(’’);
}
});
$(’textarea’).each(function (el) {
if (el.value() == el.attr(’placeholder’)) {
el.value(’’);
}
});
}
},
_onfocus: function () {
if ($(this).value() == $(this).attr(’placeholder’))
$(this).value(’’);
},
_onblur: function () {
if (IsEmpty($(this).value()) || $(this).value() == $(this).attr(’placeholder’)) {
$(this).value($(this).attr(’placeholder’));
$(this).css(’color’, ’gray’);
}
else {
$(this).css(’color’, ’black’);
}
},
_onkeyup: function () {
if (IsEmpty($(this).value())) {
$(this).css(’color’, ’gray’);
}
else {
$(this).css(’color’, ’black’);
}
}
};
使用时候:
复制代码代码如下:
placeholder.add($(’input[type="text"]’));
placeholder.add($(’textarea’));
需要注意的是,考虑到如果input的type是password的时候,placeholder显示的是.....的属性
这种情况下,解决方法为:
给定两个输入框,
一个是text,一个为password的,
在有焦点的时候,切换为password,失去焦点的时候,切换为text用来展示placeholder属性.
复制代码代码如下:
script type="text/javascript" src="jquery-1.7.2.js"/script
script type="text/javascript"
$(function(){
var pwd = $("#pwd");
var password = $("#password");
pwd.focus(function(){
pwd.hide();
password.show().focus();
});
password.focusout(function(){
if(password.val().trim() === ""){
password.hide();
pwd.show();
}
});
});
/script
input type="text" id="pwd" value="请输入密码"/
input type="password" id="password" style="display:none;"/
但是在不支持html5的低版本的浏览器中,placeholder属性是无效的,为了解决这个问题,因此,人为的去实现placeholder属性:
复制代码代码如下:
//placeholder功能实现
var placeholder = {
add: function (el) {
if (!(’placeholder’ in document.createElement(’input’))) {
var self = placeholder;
el.each(function (e) {
if (IsEmpty(e.value()) || e.value() == e.attr(’placeholder’)) {
e.value(e.attr(’placeholder’));
e.css(’color’, ’gray’);
}
else {
e.css(’color’, ’black’);
}
});
el.bind(’focus’, self._onfocus);
el.bind(’click’, self._onfocus);
el.bind(’blur’, self._onblur);
el.bind(’keyup’, self._onkeyup);
}
},
remove: function (el) {
if (!(’placeholder’ in document.createElement(’input’))) {
var self = placeholder;
el.unbind(’focus’, self._onfocus);
el.unbind(’click’, self._onfocus);
el.unbind(’blur’, self._onblur);
}
},
check: function (el) {
if (!(’placeholder’ in document.createElement(’input’))) {
el.each(function (tar) {
if (IsEmpty(tar.value())) {
tar.value(tar.attr(’placeholder’));
}
});
}
},
clear: function () {
if (!(’placeholder’ in document.createElement(’input’))) {
$(’input[type="text"]’).each(function (el) {
if (el.value() == el.attr(’placeholder’)) {
el.value(’’);
}
});
$(’textarea’).each(function (el) {
if (el.value() == el.attr(’placeholder’)) {
el.value(’’);
}
});
}
},
_onfocus: function () {
if ($(this).value() == $(this).attr(’placeholder’))
$(this).value(’’);
},
_onblur: function () {
if (IsEmpty($(this).value()) || $(this).value() == $(this).attr(’placeholder’)) {
$(this).value($(this).attr(’placeholder’));
$(this).css(’color’, ’gray’);
}
else {
$(this).css(’color’, ’black’);
}
},
_onkeyup: function () {
if (IsEmpty($(this).value())) {
$(this).css(’color’, ’gray’);
}
else {
$(this).css(’color’, ’black’);
}
}
};
使用时候:
复制代码代码如下:
placeholder.add($(’input[type="text"]’));
placeholder.add($(’textarea’));
需要注意的是,考虑到如果input的type是password的时候,placeholder显示的是.....的属性
这种情况下,解决方法为:
给定两个输入框,
一个是text,一个为password的,
在有焦点的时候,切换为password,失去焦点的时候,切换为text用来展示placeholder属性.
复制代码代码如下:
script type="text/javascript" src="jquery-1.7.2.js"/script
script type="text/javascript"
$(function(){
var pwd = $("#pwd");
var password = $("#password");
pwd.focus(function(){
pwd.hide();
password.show().focus();
});
password.focusout(function(){
if(password.val().trim() === ""){
password.hide();
pwd.show();
}
});
});
/script
input type="text" id="pwd" value="请输入密码"/
input type="password" id="password" style="display:none;"/
展开全文阅读
相关内容
-
怎么用ie浏览器打开网页(IE浏览器常用快捷键)
怎么用ie浏览器打开网页(IE浏览器常用快捷键),标签,快捷键,标...
-
教你通过命令行完美完全的卸载IE浏览器(IE9、IE
教你通过命令行完美完全的卸载IE浏览器(IE9、IE10、IE11),卸...
-
浅析IE10兼容性问题(frameset的cols属性)
浅析IE10兼容性问题(frameset的cols属性),属性,兼容性问题,浏...
-
IE不能上网浏览的常见原因和解决方法
IE不能上网浏览的常见原因和解决方法,解决方法,命令,文件,原...
-
把Windows 系统中的IE8浏览器降为IE6的方法
把Windows 系统中的IE8浏览器降为IE6的方法,方法,版本号,版本...
-
如何彻底优化IE浏览器 六种设置方法轻松优化你
如何彻底优化IE浏览器 六种设置方法轻松优化你的IE浏览器,方...
-
div层调整z-index属性在IE中无效原因分析及解决
div层调整z-index属性在IE中无效原因分析及解决方法,无效,原...
-
重装windowsXP系统中IE浏览器2步搞定
重装windowsXP系统中IE浏览器2步搞定,浏览器,用户,注册表,步...
-
IE浏览器打不开部分网页解决方法(适用于XP/vist
IE浏览器打不开部分网页解决方法(适用于XP/vista),控制,重启,...
-
在IE6/7/8下识别html5标签(让老式浏览器识别htm
在IE6/7/8下识别html5标签(让老式浏览器识别html5),识别,浏览...
-
在Surface中IE浏览器触摸版和桌面版的设置使用
在Surface中IE浏览器触摸版和桌面版的设置使用技巧,设置,桌面...
-
微软从明年1月12日起停止对IE6-IE8浏览器提供技
微软从明年1月12日起停止对IE6-IE8浏览器提供技术支持,技术支...
-
原生js方法document.getElementsByClassName在i
原生js方法document.getElementsByClassName在ie8及其以下的...
-
让ie浏览器支持RGBA颜色标准实现代码
让ie浏览器支持RGBA颜色标准实现代码,支持,浏览器,参数,透明...
-
css padding属性兼容ie6,ie8,firefox实例详解
css padding属性兼容ie6,ie8,firefox实例详解,属性,兼容,边距...