0

我需要在 iframe 中放置一个 Mootool 事件日历。

不幸的是,出现在事件日期上的工具提示总是被 iframe 的边界切断。

如何设置工具提示位置,使其始终位于容器 div 的 x=0 和 y=0(此处为“calcontainer”)?

这是生成提示的代码

if (this.showtip) {
newTip = new   Tips(eventDiv, {
fixed: true
});
eventDiv.store('tip:title', time).store('tip:text', this.options.cEvents[i].title + '<br /><i>' + this.options.cEvents[i].location +'</i>')
;
}

这里是html

<div  class="calcontainer" >
<div id="calBody"></div>
</div>

calBody 是包含日历的 div

谢谢

4

1 回答 1

0

为什么要将工具提示定位到容器的 0,0 ?那么人们将不会理解此工具提示与该日期相关。

您设置fixed:true- fixed 是一个标志,它表明工具提示是否跟随鼠标或保持固定。

您可以做的是放大 iframe,使其还包含工具提示的间隙或使用提示属性offset,或者windowPadding您可以在提示文档中阅读

于 2013-05-05T10:55:35.977 回答