每次单击底部的按钮打开jquery对话框时,页面都会自动滚动到顶部。我正在使用firefox浏览器。
请告知。
非常感谢。
答案 0 :(得分:5)
我想你必须阻止按钮的默认操作
$('#myButton').click(function(event){
event.preventDefault()
// .... open dialog.
});
或者你必须在按钮
的onclick事件上返回false<input type="button" value="My Button" onclick="openDialog();return false;" />