0

理想情况下,当我单击表中的操作项时,它会在单击时显示“显示消息”我需要一个不使用 window.alert 或 alert 的弹出窗口,而是根据我的网站设计显示一个弹出窗口

function showFailedWarning(){
    dijit.byId('validationsForm').clearMessages();
    dijit.byId('validationsForm').popup(alert("Upload Correct File "));
}
4

2 回答 2

6

方法 #1 - 纯 JavaScript

您可以使用您想要的任何设计构建自己的弹出窗口。在 HTML 中对元素进行硬编码并在 CSS 中设置为容器,或者display:none动态附加容器。

注意: 为什么我innerHTMLappendChild().

现场演示

HTML

<button id="error">Click for error</button>

JavaScript

document.getElementById('error').onclick = function (event) {
    event.preventDefault();

    /*Creating and appending the element */

    var element = '<div id="overlay" style="opacity:0"><div id="container">';
    element += "<h1>Title</h1><p>Message</p>";
    element += "</div></div>";
    document.body.innerHTML += (element);
    document.getElementById('overlay').style.display = "block";

    /* FadeIn animation, just for the sake of it */
    var fadeIn = setInterval(function () {
        if (document.getElementById('overlay').style.opacity > 0.98) clearInterval(fadeIn);
        var overlay = document.getElementById('overlay');
        overlay.style.opacity = parseFloat(overlay.style.opacity, 10) + 0.05;
        console.log(parseFloat(overlay.style.opacity, 10));

    }, 50);
};

CSS

#overlay {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1000;
    background-color: rgba(0, 0, 0, 0.5);
    opacity:0;
    display:none;
}
#container {
    position:absolute;
    top:30%;
    left:50%;
    margin-left:-200px;
    width: 400px;
    height:250px;
    background-color:#111;
    padding:5px;
    border-radius:4px;
    color:#FFF;
}



方法 #2 - 第三方库

您可以使用库jQuery UI来实现您想要的:

现场演示

HTML

<button id="error">Click for error</button>

JavaScript/jQuery

$('#error').click(function (event) {
    event.preventDefault();
    $('<div id="container"><h1>Error</h1><p>Message</p></div>').dialog({
        title: "Error"
    });
});
于 2013-07-23T18:55:27.797 回答
0

由于您这个问题有 dojo 标签,并且您的示例中有 dijit 代码,我建议您使用dijit.Dialog它来执行此操作。

我在jsfiddle上整理了一个快速示例来演示它。

require(['dijit/Dialog', 'dijit/form/Button'], function (Dialog, Button) {
    //create a new button (doesn't matter if it is programmatically or not)
    var button = new Button({
        label: 'Validate',
        type: 'button'
    });
    button.placeAt(dojo.body());
    button.on('click', function () {
        //instantiate the dialog with our error message and content
        var dialog = new Dialog({
            title:'Error Message title',
            content: '<div>Something is invalid!</div>',
            style:'min-width:300px;'
        });
        //show the error message
        dialog.show();
    });


});

dijit/Dialog的dojo 文档也应该有助于查看。

于 2013-07-24T12:32:39.260 回答