博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IE8兼容placeholder
阅读量:6229 次
发布时间:2019-06-21

本文共 889 字,大约阅读时间需要 2 分钟。

<!--IE8兼容placeholder-->

<script type="text/javascript">
if( !('placeholder' in document.createElement('input')) ){

$('input[placeholder],textarea[placeholder]').each(function(){        var that = $(this),                text= that.attr('placeholder');        if(that.val()===""){            that.val(text).addClass('placeholder');        }        that.focus(function(){            if(that.val()===text){                that.val("").removeClass('placeholder');            }        })                .blur(function(){                    if(that.val()===""){                        that.val(text).addClass('placeholder');                    }                })                .closest('form').submit(function(){                    if(that.val() === text){                        that.val('');                    }                });    });}

</script>

转载于:https://blog.51cto.com/769961/2117383

你可能感兴趣的文章
html5: Drag and Drop
查看>>
解决微信多域名授权微信网页授权订阅号借用授权无公众号代授权
查看>>
Python日志产生器
查看>>
Java——内部类(inner class)
查看>>
【NOI 2009】诗人小G
查看>>
(九)ASP.NET自定义用户控件(2)
查看>>
真机调试出现错误 No provisioning profiles found: No non–expired provisioning profiles were f...
查看>>
窗体的置顶显示
查看>>
第五次作业(团队作业)
查看>>
URL重定向之一.htaccess文件和AllowOverride指令
查看>>
Dedecms去掉网站底部powered by dedecms 的方法
查看>>
2017中国大学生程序设计竞赛-哈尔滨站 A - Palindrome
查看>>
数组求和函数
查看>>
Pos管理类库的第三方库
查看>>
在局域网中通过端口号扫描服务器IP
查看>>
在android 采用 android junit test 测试注意
查看>>
【转】网页禁止后退键BackSpace的JavaScript实现(兼容IE、Chrome、Firefox、Opera)
查看>>
登录界面点击登录后如何延迟提示成功的div的显示时间并跳转
查看>>
MySQL 数据库死锁
查看>>
关于try catch
查看>>