如何使jAlert()像'Please Wait'消息。(没有OK按钮)

时间:2013-07-17 03:50:20

标签: php javascript jquery html jquery-blockui

如何在没有OK按钮的情况下制作jAlert()消息框。

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

2 个答案:

答案 0 :(得分:1)

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

核心jquery.alert.js中有一些修改,因为没有重叠参数。我做了更改以传递overlay(第6个参数)选项来传递它。您可以用我修改过的js代码替换jquery.alert js代码。

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

答案 1 :(得分:1)

使用JQuery事件!!

示例:: 情况1:如果您在间隔后尝试触发按钮 然后使用

setInterval( "clickRight()", 5000 );

function clickRight()
{
   $('.slide_right').trigger('click'); 
};

案例2:如果您正在等待用户在输入字段上输入某些内容

$('#form').on('mousedown',function(e)
{
 if(e.which===1)
 {
   //call your function alerting message here//      
 }
}

短代码::

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>

<input id="whichkey" value="type something">
<div id="log"></div>
<script>
$('#whichkey').on('mousedown',function(e){
    alert("Error");
});
</script>

</body>
</html>