FullCalendar 和 qTip。帮助将描述描述为数组

发布于 2024-09-15 19:31:05 字数 952 浏览 7 评论 0原文

我对负载描述有疑问。我通过 ajax 得到答案,这是 JSON 部分信息:

{"id":"","start":1282561200,"end":1282564800,"title":"admin admin","description":[["Alcatel-6850, ","Alcatel-6400, "]]}

这是渲染事件的代码:

eventRender: function(event, element) {
        element.qtip({
            content : event.description,
            position: {
                corner: {
                    tooltip: 'bottomLeft',
                    target: 'topRight'
                }
            },
            style   : {
                width: 200,
                padding: 5,
                //background: '#A2D959',
                color: 'black',
                textAlign: 'center',
                border: {
                    width: 2,
                    radius: 5,
                    color: '#A2D959'
                },
                tip: 'bottomLeft',
                name: 'blue'
            }
        });

如何将此描述数组加载到工具提示。

I have problem with load description. I'm getting answer via ajax this is JSON part information:

{"id":"","start":1282561200,"end":1282564800,"title":"admin admin","description":[["Alcatel-6850, ","Alcatel-6400, "]]}

This is code to rendering event:

eventRender: function(event, element) {
        element.qtip({
            content : event.description,
            position: {
                corner: {
                    tooltip: 'bottomLeft',
                    target: 'topRight'
                }
            },
            style   : {
                width: 200,
                padding: 5,
                //background: '#A2D959',
                color: 'black',
                textAlign: 'center',
                border: {
                    width: 2,
                    radius: 5,
                    color: '#A2D959'
                },
                tip: 'bottomLeft',
                name: 'blue'
            }
        });

How to load this description array to tooltip.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傻比既视感 2024-09-22 19:31:05

这是答案:

content: (event.description.join(", ")),

Here is answer:

content: (event.description.join(", ")),
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文