div 레이어를 팝업하고 자동으로 사라지는 jquery 구현 코드에 대한 코드를 공유하겠습니다. 구체적인 코드는 다음과 같습니다.
var HuiFang={ m_tishi :null,//全局变量 判断是否存在div, //提示div 等待2秒自动关闭 Funtishi: function (content, url) { if (HuiFang.m_tishi == null) { HuiFang.m_tishi = '<div class="xiaoxikuang none" id="app_tishi" style="z-index:9999;left: 15%;width:70%;position: fixed;background:none;bottom:10%;"> <p class="app_tishi" style="background: none repeat scroll 0 0 #000; border-radius: 30px;color: #fff; margin: 0 auto;padding: 1.5em;text-align: center;width: 70%;opacity: 0.8; font-family:Microsoft YaHei;letter-spacing: 1px;font-size: 1.5em;"></p></div>'; $(document.body).append(HuiFang.m_tishi); } $("#app_tishi").show(); $(".app_tishi").html(content); if (url) { window.setTimeout("location.href='" + url + "'", 1500); } else { setTimeout('$("#app_tishi").fadeOut()', 1500); } }, }
용도:
HuiFang.Funtishi("请输入名字。");
위는 편집기에서 도입한 jQuery 팝업 div 레이어로 이후 자동으로 사라집니다. 2초