我嘗試使用下面的代碼jQuery的顏色框添加到我的網頁:彩盒錯誤在IE「對象不支持此屬性或方法」
<!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>
它同時適用於火狐和鉻。但是當我在IE7中運行它時,出現以下錯誤:
Object doesn't support this property or method
任何幫助都會很棒。
JavaScript文件是否正確加載? – epascarello
是啊所有的JavaScript文件已經正確加載 –
你正在加載什麼版本的jquery? – emd