ie8中使用placeholder

placeholder 是 html5 中的新屬性,考慮到還有很多 ie8 的用戶,因此找了一個 ie8 的 placeholder 的補丁,以下:javascript

<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>  

將該段代碼放在 </body> 以前便可,須要說明的是,該段代碼用到了 jQuery ,因此事先須要引用 jQuery。html

該文不能解決密碼類型的 placeholder ,請參考 ie 中支持 password 的 placeholderhtml5

相關文章
相關標籤/搜索