用js写了个tip弹窗,切换页面弹框不会消失?

 /*

      * 提示框

      */

     window.showTip=function(msg){

         var tip='<div  class="dcxx"><span class="promptMsg">msg</span></div>';

         var $tip=$(tip).appendTo(window.top.document.body);

         $tip.stop(true);

         $tip.find('.promptMsg').html(msg);

         $tip.show();

         $tip.fadeIn(500).delay(2000).fadeOut(500);

         window.top.setTimeout(function(){

             $tip.remove();

         },3000);

     };


守着星空守着你
浏览 814回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript