简单的jquery弹出窗口

时间:2009-10-12 23:08:48

标签: javascript jquery html css

我想制作一个非常简单的jquery框,说“对不起,找不到那篇博文。”

我不想要任何非常先进的东西......我该怎么办呢?

3 个答案:

答案 0 :(得分:4)

您可以查看these nice custom alert and confirmation boxes.您可以自定义它们。

答案 1 :(得分:4)

jQuery插件 Impromptu 对于看起来比标准JS警报好很多的弹出窗口来说是一个很好的简单选择

http://trentrichardson.com/Impromptu/index.php

网站上有说明可以帮助您实施。

答案 2 :(得分:3)

jQuery UI Dialog?类似,这是 Working Demo

$('div.no-post').dialog({        
    buttons: { 
        "Ok": function() { 
            $(this).dialog("close"); 
        } 
    },
    title: "Post Not Found",
    modal: true,
    draggable: false,
    resizable: false
});

<div class="no-post">
    Sorry, that blog post could not be found.
</div>

或者我一直很喜欢BlockUI plugin