但是有一些瀏覽器,如chrome,當(dāng)鼠標(biāo)點擊輸入框時,placeholder的值不消失,只有輸入數(shù)據(jù)才消失,會使前端用戶體驗大打折扣。
看了很多大神的方法,寫了長長的js,看著有點吃力,就想到了下面這種最傻的方法解決了這個問題。
html代碼:
<input type="text" placeholder="多個關(guān)鍵詞空格隔開">
鼠標(biāo)點擊input時,placeholder中的提示信息消失:
<input type="text" placeholder="多個關(guān)鍵詞空格隔開" onfocus="this.placeholder=‘‘" onblur="this.placeholder=‘多個關(guān)鍵詞空格隔開‘">
PlaceHolder的兩種實現(xiàn)方式
placeholder屬性是HTML5 中為input添加的。在input上提供一個占位符,文字形式展示輸入字段預(yù)期值的提示信息(hint),該字段會在輸入為空時顯示。
如
<input type="text" name="loginName" placeholder="郵箱/手機號/QQ號">
目前瀏覽器的支持情況
然而,雖然IE10+支持placeholder屬性,它的表現(xiàn)與其它瀏覽器也不一致
?IE10+里鼠標(biāo)點擊時(獲取焦點)placeholder文本消失
?Firefox/Chrome/Safari點擊不消失,而是鍵盤輸入時文本消失
這相當(dāng)惡心,如果使用了placeholder屬性。產(chǎn)品經(jīng)理還是不依不饒,會講為什么IE里是點擊的時候提示文本消失,Chrome里卻是鍵盤輸入的時候提示文本消失。要求前端工程師改成一樣的表現(xiàn)形式。鑒于此,以下兩種實現(xiàn)方式均不采用原生的placeholder屬性。
兩種方式的思路
1.(方式一)使用input的value作為顯示文本
2.(方式二)不使用value,添加一個額外的標(biāo)簽(span)到body里然后絕對定位覆蓋到input上面
兩種方式各有優(yōu)缺點,方式一占用了input的value屬性,表單提交時需要額外做一些判斷工作,方式二則使用了額外的標(biāo)簽。
方式一
/** * PlaceHolder組件 * $(input).placeholder({ * word: // @string 提示文本 * color: // @string 文本顏色 * evtType: // @string focus|keydown 觸發(fā)placeholder的事件類型 * }) * * NOTE: * evtType默認(rèn)是focus,即鼠標(biāo)點擊到輸入域時默認(rèn)文本消失,keydown則模擬HTML5 placeholder屬性在Firefox/Chrome里的特征,光標(biāo)定位到輸入域后鍵盤輸入時默認(rèn)文本才消失。 * 此外,對于HTML5 placeholder屬性,IE10+和Firefox/Chrome/Safari的表現(xiàn)形式也不一致,因此內(nèi)部實現(xiàn)不采用原生placeholder屬性 */ $.fn.placeholder = function(option, callback) { var settings = $.extend({ word: '', color: '#ccc', evtType: 'focus' }, option) function bootstrap($that) { // some alias var word = settings.word var color = settings.color var evtType = settings.evtType // default var defColor = $that.css('color') var defVal = $that.val() if (defVal == '' || defVal == word) { $that.css({color: color}).val(word) } else { $that.css({color: defColor}) } function switchStatus(isDef) { if (isDef) { $that.val('').css({color: defColor}) } else { $that.val(word).css({color: color}) } } function asFocus() { $that.bind(evtType, function() { var txt = $that.val() if (txt == word) { switchStatus(true) } }).bind('blur', function() { var txt = $that.val() if (txt == '') { switchStatus(false) } }) } function asKeydown() { $that.bind('focus', function() { var elem = $that[0] var val = $that.val() if (val == word) { setTimeout(function() { // 光標(biāo)定位到首位 $that.setCursorPosition({index: 0}) }, 10) } }) } if (evtType == 'focus') { asFocus() } else if (evtType == 'keydown') { asKeydown() } // keydown事件里處理placeholder $that.keydown(function() { var val = $that.val() if (val == word) { switchStatus(true) } }).keyup(function() { var val = $that.val() if (val == '') { switchStatus(false) $that.setCursorPosition({index: 0}) } }) } return this.each(function() { var $elem = $(this) bootstrap($elem) if ($.isFunction(callback)) callback($elem) }) }
方式二
方式2 對于以下場景不適合
1. input初始隱藏
此時無法取到input的offset,繼而無法定位span到input上面。
2. 包含input的頁面dom結(jié)構(gòu)發(fā)生變化
比如頁面里刪除了一些元素或添加了一些元素,導(dǎo)致input向上或向下偏移,而此時span則沒有偏移(span相對body定位)。這比較惡心,可以考慮把span作為input的兄弟元素,即相對內(nèi)層p定位(而不是body)。但這樣必須強制給外層p添加position:relative,添加后可能會對頁面布局產(chǎn)生一定影響。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com