我有以下 Mootools 代码,用于在密码字段中添加焦点/模糊值:
$$('#connect_login_box #password-element > input').set('value','Password').set('type', 'text').addEvents({
focus: function(){
if (this.value=='Password') this.set('type', 'password').addClass('input_active').value=''; },
blur: function(){
if (this.value=='') this.set('type', 'text').removeClass('input_active').value='Password'; }
此代码在 IE8 中不起作用,它破坏了页面上的所有其他 JS。我很确定当它到达 set('type', 'text') 时会产生错误
知道如何解决这个问题吗?
谢谢!