在打开对话框以响应链接触发器时,如何保留页面滚动位置?

时间:2009-10-16 16:11:07

标签: javascript jquery html dom event-handling

我想知道在打开jQuery对话框时如何保持滚动位置。

以下是我用来打开对话框的代码:

<a class="link" onclick="openmyDialog();" href="#">Open a dialog</a>

功能:

function openmyDialog()
{
    $("#dialog").dialog('destroy');
    $("#dialog").html("msg");
    $("#dialog").dialog(
    {
        buttons:
        {
        "Yes": function()
              {
                $(this).dialog("close");
              }
        },
        resizable: false,
        draggable: true,
        modal: true,
        title: 'Error'
    });
    return false;
}

2 个答案:

答案 0 :(得分:3)

您没有正确地将返回值返回给点击处理程序:

onclick="return openmyDialog();"

答案 1 :(得分:0)

使用<a href="javascript:void(0);"></a>代替“#”?