IE中的ColorBox错误“对象不支持此属性或方法”

时间:2012-05-11 15:00:50

标签: javascript jquery internet-explorer colorbox

我正在尝试使用以下代码将jquery颜色框添加到我的网页:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
    <link rel="stylesheet" href="colorbox.css" />
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script type="text/javascript" src="jquery.colorbox-min.js"></script>
</head>
<body>
    <script type="text/javascript">
        $(function ()
        {
            $(".popup")
            .colorbox({iframe:true, innerWidth:695, innerHeight:340, overlayClose:false });

        })
    </script>
    <a class='popup' href='http://www.bbc.co.uk'>bbc.co.uk</a>
</body>

适用于firefox和chrome。但是当我在IE7中运行它时,我收到以下错误:

  

Object不支持此属性或方法

任何帮助都会很棒。

1 个答案:

答案 0 :(得分:0)

很可能您的<script>标记无效或包含的类型属性设置为text/javascript以外的其他内容。

如果没有看到代码的那一部分,我们就无法弄清楚究竟出了什么问题。

更多信息

脚本代码必须有一个结束</script><script />无法在所有浏览器中使用。

此外,type属性必须为text/javascript或不存在。如果是application/javascript某些版本的IE将无法执行它。