兼容其他不支持placeholder的浏览器(超强的让IE下支持placeholder的属性插件)

html5为元素添加了新属性placeholder
这是一个很常用的功能:把提示放在输入框里;onfocus时提示消息;onblur时如果已有值,则不再提示,如果没值,保留提示。
QWrap的Valid组件里,提供了这个功能。不过Valid的功能太多,有使用成本。
这里,把跟placeholder的功能独立出来,可以无依赖的使用。
代码如下:


复制代码
   
   
< html > < head > < meta http-equiv ="Content-Type" content ="text/html; charset=GB2312" > < title > 验证Valid ----placeholder </ title > < meta http-equiv ="Content-Type" content ="text/html; charset=gb2312" /> < style > span.emptyhint { color : #999 ; position : absolute ; padding : 3px ; } </ style > </ head > < body > < div id =doc3 > < div id ="bd" > < div class ="section-ctn" > < ul > < li > < label class ="k" > 订单主人: </ label > < input type ="text" placeholder ="请填写订单主人" value ="JK" > </ li > < li > < label class ="k" > 订单号: </ label > < input type ="text" placeholder ="请填写订单号" > </ li > < li > < label class ="k" > 备注: </ label > < textarea type ="text" placeholder ="请填写备注" ></ textarea > </ li > </ ul > </ div > </ div > < div id ="ft" > 部分内容来自 qwrap wagang组件Valid: ( < a href ="http://dev.qwrap.com/resource/js/wagang/_index.html" > http://dev.qwrap.com/resource/js/wagang/_index.html </ a > ) </ div > < div id ="ft" > QWrap网址: < a href ="http://www.qwrap.com" > www.qwrap.com </ a > </ div > </ div > </ body > < script > function initPlaceHolders(){ if ( ' placeholder ' in document.createElement( ' input ' )){ // 如果浏览器原生支持placeholder return ; } function target (e){ var e = e || window.event; return e.target || e.srcElement; }; function _getEmptyHintEl(el){ var hintEl = el.hintEl; return hintEl && g(hintEl); }; function blurFn(e){ var el = target(e); if ( ! el || el.tagName != ' INPUT ' && el.tagName != ' TEXTAREA ' ) return ; // IE下,onfocusin会在div等元素触发 var emptyHintEl = el.__emptyHintEl; if (emptyHintEl){ // clearTimeout(el.__placeholderTimer||0); // el.__placeholderTimer=setTimeout(function(){//在360浏览器下,autocomplete会先blur再change if (el.value) emptyHintEl.style.display = ' none ' ; else emptyHintEl.style.display = '' ; // },600); } }; function focusFn(e){ var el = target(e); if ( ! el || el.tagName != ' INPUT ' && el.tagName != ' TEXTAREA ' ) return ; // IE下,onfocusin会在div等元素触发 var emptyHintEl = el.__emptyHintEl; if (emptyHintEl){ // clearTimeout(el.__placeholderTimer||0); emptyHintEl.style.display = ' none ' ; } }; if (document.addEventListener){ // ie document.addEventListener( ' focus ' ,focusFn, true ); document.addEventListener( ' blur ' , blurFn, true ); } else { document.attachEvent( ' onfocusin ' ,focusFn); document.attachEvent( ' onfocusout ' ,blurFn); } var elss = [document.getElementsByTagName( ' input ' ),document.getElementsByTagName( ' textarea ' )]; for ( var n = 0 ;n < 2 ;n ++ ){ var els = elss[n]; for ( var i = 0 ;i < els.length;i ++ ){ var el = els[i]; var placeholder = el.getAttribute( ' placeholder ' ), emptyHintEl = el.__emptyHintEl; if (placeholder && ! emptyHintEl){ emptyHintEl = document.createElement( ' span ' ); emptyHintEl.innerHTML = placeholder; emptyHintEl.className = ' emptyhint ' ; emptyHintEl.onclick = function (el){ return function (){ try {el.focus();} catch (ex){}}}(el); if (el.value) emptyHintEl.style.display = ' none ' ; el.parentNode.insertBefore(emptyHintEl,el); el.__emptyHintEl = emptyHintEl; } } } } initPlaceHolders(); </ script > </ html >
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值