在ie下 elemen用不了Object扩展方法 
<input id="ff" type="text"></input>
  <script>
  Object.prototype.on=function(){
  alert("123")
  }
  document.getElementById("ff").on()
  </script>