我使用的是最新的DNN 7.02。 有没有办法将常规javascript警报转换为jQuery UI警报或RadWindow警报?我现在使用的警报如下面的代码所示。我想使消息以粗体和大字体显示。我知道这一切在jQuery UI和radAlert中都是可能的。
除了将html,javascript添加到现有DNN页面之外,我无法更改任何代码。
alert('Content has been copied');
编辑1: 我尝试使用dnnAlert(这是一个包含在常规DNN安装中的dnnAlert的jQuery UI插件)代替常规警报,但问题是当我点击OK按钮时,页面自动滚动到顶部,这很烦人。
$.dnnAlert({
text: 'Copied code to clipboard',
dialogClass: 'dnnFormPopup',
title: 'Copy Successful',
modal:false
});
答案 0 :(得分:1)
您可以更改alert()
:
(function() {
window.alert = function() {
// do whatever you want with arguments[0]
};
})();