打开jquery对话框时,页面自动转到顶部

时间:2011-07-19 09:31:35

标签: jquery

每次单击底部的按钮打开jquery对话框时,页面都会自动滚动到顶部。我正在使用firefox浏览器。

请告知。

非常感谢。

1 个答案:

答案 0 :(得分:5)

我想你必须阻止按钮的默认操作

$('#myButton').click(function(event){
    event.preventDefault()
    // .... open dialog.
});

或者你必须在按钮

的onclick事件上返回false
<input type="button" value="My Button" onclick="openDialog();return false;" />