1

我在 IE 8 中收到“对象不支持此属性或方法”错误。Firefox 中没有错误。

有人知道是什么原因造成的吗?

<script type="text/javascript">
    function callReport() {
      var sPath = $('input[name*="ReportPath"]').val();
      window.open(sPath);
      }
    $('div:last div.active').qtip({
      content: 'This is an active div element',
      show: 'mouseover',
      hide: 'mouseout'
    })
</script>
4

1 回答 1

0

看起来 qTip 使用了一个名为的全局变量tooltip,这可能偶尔会导致 IE8 出现问题(可能只是在严格模式下)。在我的 JS 文件顶部声明window.tooltip = null使用 qTip 为我解决了这个问题,并且更清楚地表明该变量存在。

于 2013-11-06T17:13:00.900 回答