5

我不是 JavaScript 向导,所以我肯定在这里遗漏了一些明显的东西。我有一个表,它有多个链接,利用Twitter Bootstrap 的弹出行为。我有它,单击一个链接会打开弹出窗口,然后单击另一个会关闭第一个,但经过几次尝试后它会出现故障,甚至开始自行关闭。所以问题是:一旦打开另一个弹出窗口,您如何正确关闭弹出窗口?

我在这里设置了一个 JSFiddle(虽然它似乎根本不起作用):http: //jsfiddle.net/ZnJ6b/

HTML:

<table>
    <thead>
        <th>Description</th>
        <th>Button</th>
    </thead>
    <tbody>
        <tr>
            <td>Item #1</td>
            <td><a href="#" class="btn show-text" data-toggle="popover" data-placement="right" data-content="Content for item one." title="" data-original-title="Review text">Click for text</a>

            </td>
        </tr>
        <tr>
            <td>Item #2</td>
            <td><a href="#" class="btn show-text" data-toggle="popover" data-placement="right" data-content="Content for item two." title="" data-original-title="Review text">Click for text</a>

            </td>
        </tr>
    </tbody>
</table>

Javascript:

$(this).popover('show');
$('.show-text').click(function () {
    $('.show-text').popover('hide');
});

提前感谢您对可怜的 JS n00b 的帮助!

4

1 回答 1

16

尝试这个:

$('.show-text').popover();
$('.show-text').click(function () {
     $('.show-text').not(this).popover('hide');
});
于 2013-05-07T19:11:08.587 回答