0

我有一个弹出框,提示来自<a>. 在里面我想把有链接的内容放在<a>里面。一旦我放入另一个<a href>,就会打破整个盒子,所有隐藏的内容都会暴露出来,从而破坏我的页面。

<span class="modalboxContent">
    <div class="links_box">
        <div class="link_title_holder">
            <div class="link_title">
                <a href="/index.php/general/watch">
                    <span class="red">WATCH</span> Videos on topics you care about.
                </a>
            </div>
            <div class="link_title">
                <a href="/index.php/general/read">
                    <span class="red">READ</span> Informational booklets and handouts.
                </a>
            </div>
            <div class="link_title">
                <a href="/index.php/general/link">
                    <span class="red">LINK</span> Find additional online resources
                </a>
            </div>
        </div>
    </div>
</span>

提前感谢,如果您需要查看任何其他代码,请告诉我。

4

1 回答 1

1

编辑将 .on() 处理程序更改为 .live() 处理程序以使用动态生成的元素(现在应该工作)

.on() 小提琴
.live() 小提琴

HTML样式它与悬停状态等

 <span id="clickme" class="simulatedlink" >Click Me!</span>

jQuery

 $('#clickme').live('click', function(){ window.location.href = 'http://www.videsignz.com/'; });
于 2012-11-03T03:56:25.417 回答