如何修复我的脚本错误:“对象不支持属性或方法'模态'”

时间:2013-02-22 19:56:34

标签: javascript

当我点击“电子邮件公司”链接时,我的网站上出现了关注错误(示例如下:http://www.expeditionersafaris.com/place/5-day-best-of-both-worlds-kruger-and-private-reserve-tour-wildlife-encounters/)。

错误是:

SCRIPT438:对象不支持属性或方法'modal' post.custom.js,第56行3字符

脚本是:

jQuery(document).ready(function () {
jQuery('a.b_sendtofriend').click(function (e) {
    e.preventDefault();
    jQuery('#basic-modal-content').modal({persist:true});
});

jQuery('a.b_claim_listing').click(function (e) {
    e.preventDefault();
    jQuery('#basic-modal-content4').modal({persist:true});
});

    jQuery('a.b_send_inquiry' ).click(function (e) {
    e.preventDefault();
    jQuery('#basic-modal-content2').modal({persist:true});
});

    jQuery('p.links a.a_image_sort').click(function (e) {
    e.preventDefault();
    jQuery('#basic-modal-content3').modal({persist:true});
});

错误指向jQuery('#basic-modal-content2')。modal({persist:true});部分。

0 个答案:

没有答案