0

我无法找到我做错了什么

我正在使用 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
4

1 回答 1

0

1) 确保 colorbox 插件已加载

2) 将代码包装在 $.ready 函数中,以便在加载 dom 时执行:

$(function(){
    $(".addmeetingroom").colorbox({wid...
});
于 2012-09-18T06:51:56.817 回答