我正在使用colorbox发送ajax请求。当我最初打开彩盒时,它工作正常,但当我关闭它并重新打开它第二次或更多时,它会出现以下错误:
TypeError:$(...)。colorbox不是函数
我用jQuery替换了$,但错误仍然是一样的。
TypeError:jQuery(...)。colorbox不是函数
我有以下代码:
function equipmentButton(event) {
disabledEventPreventDefault(event);
if ($("#Briefing_scheduled_date").val() == "") {
alert("You can't add briefing equipment without specifying " + wordForBriefing + " date.");
return false;
}
$('#equipmentPopup').colorbox({
ajax: true,
width: "620px",
height: "450px",
href: showEquipment,
data: function () {
return {
briefingId: $("#briefing_id").val(),
briefingDate: $("#Briefing_scheduled_date").val(),
briefingEndDate: $("#Briefing_scheduled_end_date").val(),
briefingEquipments: $('#BriefingEquipments').val()
}
}
});
}