我们可以在没有使用alert或windows.alert的情况下弹出

时间:2013-07-23 18:31:24

标签: javascript iframe dojo popup

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

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

2 个答案:

答案 0 :(得分:6)

方法#1 - 纯JavaScript

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

注意: Why I used innerHTML in place of appendChild()

Live Demo

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之类的库来实现您的目标:

Live Demo

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"
    });
});

答案 1 :(得分:0)

由于您的此问题包含dojo标记,并且您的示例中包含dijit代码,因此建议您使用dijit.Dialog执行此操作。

我在jsfiddle demonstrating it上放了一个简短的例子。

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();
    });


});

dojo docs for dijit/Dialog也应该有助于查看。