码迷,mamicode.com
首页 > Web开发 > 详细

Html5 placeholder在ie10以下伪提示

时间:2014-11-03 12:44:05      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:io   sp   on   cti   html   bs   amp   ef   as   

大家是知道的Html5在ie10以上的版本才支持,最近用bootstrap前端开发框架搞一个网站,想在ie10以下也能提示,所以就得用js伪装下了。

首先判断浏览器是否支持placeholder

if (!(‘placeholder‘ in document.createElement(‘input‘)))

然后追加text,本来想要直接更改val值的,获得鼠标清空,但是如果需要验证他是必填项的话就不对了。所以还是追加text。

$("input").not("input[type=‘password‘]").each(//把input绑定事件 排除password框  
                 function () {
                     if ($(this).val() == "" && $(this).attr("placeholder") != undefined) {
                         $(this).after(‘<input class="‘ + $(this).attr("class") + ‘" type="text" value=‘ + $(this).attr("placeholder") + ‘ autocomplete="off" />‘);
                         //$(this).val($(this).attr("placeholder"));
                         $(this).hide(); $(this).next().show();
                         $(this).next().focus(function () {
                             $(this).prev().show();
                             $(this).prev().focus();
                             $(this).hide();
                         });
                         $(this).blur(function () {
                             if ($(this).val() == "") { $(this).hide(); $(this).next().show(); }
                         });
                     }
也许还不太完美,希望大家指出。

Html5 placeholder在ie10以下伪提示

标签:io   sp   on   cti   html   bs   amp   ef   as   

原文地址:http://www.cnblogs.com/liangleiming/p/4070832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!