我无法找到我做错了什么
我正在使用 jQuery 颜色框
<a title="Add Externaal attendee" class ="addmeetingroom" href="http://webfaction/UI/user/attandee.php" style="background-color:orange;text-align:center;text-decoration:none;"> Add Attendee<a>
这是彩盒的脚本
<script>
function getLBTitle(that){
title= $(that).data("title");
if(typeof title == 'undefined'){
title = $(that).attr("original-title")
}
if(typeof title == 'undefined'){
title = $(that).attr("title")
}
return title;
}
$(".addmeetingroom").colorbox({width: "600", initialWidth: "500", height:"500", top:"5%",title:function(){return getLBTitle($(this));}});
</script>
我不知道为什么我会得到
TypeError: $(".addmeetingroom").colorbox is not a function