0

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

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

4

2 回答 2

1

请检查这个小提琴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);});
});
于 2013-07-17T04:49:56.047 回答
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>
于 2013-07-17T05:02:16.313 回答