如何制作没有“确定”按钮的jAlert()消息框。

基本上我想要的是使用jAlert()之类的Jquery Block UI

最佳答案

请检查此小提琴http://jsfiddle.net/Bumts/2/

由于没有覆盖参数,因此对核心jquery.alert.js进行了一些修改。我进行了更改以通过叠加层(第6个参数)选项。您可以用修改后的代码替换jquery.alert js代码。

$(function(){
$('#test').click(function(){$('#test3').jAlert('This is a jAlert Warning Box',"warning",'warningboxid', '', '', 1);});
});

10-08 18:45