0

我有一个表格,其中最后一个标签“td”调用了模态窗口。问题是仅在隐藏页面重新加载时适用于第一个模式窗口,但对于其他模式窗口重新加载不起作用。

<a class="icon-remove-sign" id="exclusao" href="#modalExclude{{janela.campanha.id}}" data-toggle="modal" title="Excluir"></a> 
// this generate the following urls:
// http://localhost:8000/display/detail/15/#modalExclude11
// http://localhost:8000/display/detail/15/#modalExclude12
// http://localhost:8000/display/detail/15/#modalExclude13

jQuery 代码:

$(function() {
    $('#exclusao').click(function() {
        var modal = $(this).attr('href');
        console.log(modal); // show the href only for the first row --> #modalExclude11
        // show modal
        $(modal).modal({
            show: false,
        });
        // clean message info in modal
        $('div#messageExclude').html('');
        // reload page when modal is hidden
        $(modal).on('hidden', function() {
            window.location.reload(true) // work only for the first row --> #modalExclude11
        });

    });
});

所有模式都正确显示,但只会使页面重新加载到表格的第一行。有谁知道可以是什么?谢谢!

4

1 回答 1

0

问题是ID:

<a class="icon-remove-sign" id="exclusao" href="#modalExclude{{janela.campanha.id}}" data-toggle="modal" title="Excluir"></a>

需要使用 CLASS,我忘记了 ID 在代码中必须是唯一的,但是使用类是有效的。

class="icon-remove-sign"

谢谢!

于 2012-07-10T18:18:32.020 回答