我在我的DNN 7.02网站上使用dnnAlert(dnnAlert是dnnAlert的jQuery UI插件,包含在常规DNN安装中)代替常规警报,但问题是当我点击OK按钮时,页面会自动显示滚动到顶部,这非常烦人。
如何阻止自动滚动?
$.dnnAlert({
text: 'Copied code to clipboard',
dialogClass: 'dnnFormPopup',
title: 'Copy Successful',
modal:false
});
使用以下html呈现OK按钮。
<button class="dnnPrimaryAction" type="button">Ok</button>
答案 0 :(得分:0)
我花了很多时间试图让JQUI对话框在DNN 7中正常工作。 我希望您遇到的问题与设置
有关modal:false
我发现如果关键元素:
,使用直接JQUI对话框dialogClass:'dnnFormPopup dnnClear'
已添加。 JC