0

我有那个网址:

<a onClick="showDialog({$product['id']});">More Info...</a>

此外,我还有:

function showDialog(productID)
{
    $( "#dialog-modal_"+productID ).html( "<iframe src='index.php?act=showProduct&amp;id="+productID+"' width='100%' height='100%' frameborder='0' scrolling='no'></iframe>" );
    $( "#dialog-modal_"+productID ).dialog({
    width: 810,
    height: 590,
    resizable: false,
    modal: true,
    open: function(event, ui)
    {
        event.preventDefault();
    }
    });
    container
        .dialog('option', 'title', 'Your Title')
        .dialog('option', 'buttons', {
            Close: function() {
                $(this).dialog('close');
            }
        })
        .dialog('open');

    var stateObj = { foo: "bar" };
    window.history.pushState(stateObj, "page 2", "{$info['siteurl']}/index.html#product-"+productID);

}

如果我在它工作后打开它,但如果我再试一次,它就不会打开。我需要找到一种方法来“清除”当前 ID 的最后一个对话框。对于不同的对话框,它的工作,但只有一次。

4

1 回答 1

2

在产品循环内部:

<a href="javascript:" class="productOpener" data-id="{$product['id']}">more info...</a>

还有你的 javascript:

$(".productOpener").click(function() {
    showDialog($(this).data("id"));
});

并修改您showDialog以在需要时创建模态 div:

function showDialog(productID) {
    var _modal = $("<div/>"); //add whatever styling you need
    _modal.html( "<iframe src='index.php?act=showProduct&amp;id="+productID+"' width='100%' height='100%' frameborder='0' scrolling='no'></iframe>" );
    _modal.dialog({ ... });
    ...
}
于 2013-01-07T19:12:27.893 回答