0

我有简单的表格日历,我在每个 td 中都有一个指向每日详细信息的链接,但我也希望有指向 td 中事件的链接。我所有的链接都使用 jquery modals。那么如何使用模态链接内部链接?

我有这个,它正在崩溃。

<td>
<a href="#modal_to_day_element" id="openmodal" data-toggle="modal" >
    #here is for loop 
    <a href="#link_to_event" id="event" data-toggle="modal">
        Event title
    </a>
</a>
</td>
4

1 回答 1

0

使用嵌套标签是一种无效格式。试试这个方法

HTML:

<td>
    <ul>
        <a href="#modal_to_day_element" id="openmodal" data-toggle="modal" >
           #here is for loop 
        </a>
        <li>
            <a href="#link_to_event" id="event" data-toggle="modal">
                Event title
            </a>
        </li>
    </ul>
</td>

CSS :您可以删除带有列表项的项目符号(可选)

ul{
    list-style-type: none;
}
于 2013-10-25T21:20:18.000 回答