首页>>Jquery文字>>jQuery弹窗插件(2021-12-22)

jQuery弹窗插件

支持回调函数,自动关闭等

jQuery弹窗插件
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <input type="button" class="button-style" value="普通信息弹窗(弹窗可以自动隐藏)" id="popupB" />  
  2.             <script type="text/javascript">  
  3.                 $('#popupB').click(function(){  
  4.                     var popup = new Popup({  
  5.                         'type': 'info',  
  6.                         'title': '提示信息',  
  7.                         'text': '此弹窗为普通信息弹窗,2秒钟之后自动关闭',  
  8.                         'color': '#fff',  
  9.                         'bgcolor': '#213bfd',  
  10.                         'autohide': true,  
  11.                         'showtime': 2000  
  12.                     });  
  13.                 })  
  14.             </script>  

 


原文地址:http://www.freejs.net/article_jquerywenzi_928.html