gpt4 book ai didi

javascript - SCRIPT1028 : Expected identifier, 字符串或数字

转载 作者:行者123 更新时间:2023-12-02 22:32:50 24 4
gpt4 key购买 nike

我正在运行一个显示事件日历的插件。它在除 IE 兼容模式之外的所有浏览器中都能正常工作。选中该选项后,日历就会消失。我相信这是一个 JS 错误。

IE 调试器错误:

element.qtip({
content: {
text: event.description,
title: {
text: 'Description',
}
},
position: {
at: 'top right',
adjust: {
x: 0, y: 30
},
},

在我的插件编辑器中,这是代码:

element.qtip({
content: {
text: event.description,
title: {
text: '<?php _e('Description', 'event_espresso'); ?>',
}
},
position: {
at: 'top right',
adjust: {
x: 0, y: 30
},
},

我不擅长调试,因此我们将不胜感激。

如果有帮助,请查看以下页面:http://www.mbausa.org/calendar/

最佳答案

Internet Explorer 在处理对象和数组中的尾随逗号时遇到问题;

title: {
text: 'Description', //<--
}

您可能想要:

title: {
text: 'Description'
}

关于javascript - SCRIPT1028 : Expected identifier, 字符串或数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12675622/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com