0

パスワードフィールドにフォーカス/ぼかしの値を追加するために、次の 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') になるとエラーが発生すると確信しています

どうすればこれを修正できますか?

ありがとう!

4

1 に答える 1