当前位置: 代码迷 >> Web前端 >> IE8 不支持该属性或许该方法
  详细解决方案

IE8 不支持该属性或许该方法

热度:44   发布时间:2012-10-18 13:46:55.0
IE8 不支持该属性或者该方法

今天在测试代码的时候,报了这样一个错

svCoCode = document.getElementById('svCoCode').getAttribute('value');

不支持该属性或者该方法,在firefox上是正常的,但是在ie上抱着个错。

原因:在IE上应该先声明在使用

改成:var svCoCode = document.getElementById('svCoCode').getAttribute('value');

正确

  相关解决方案