/*
* 提示框
*/
window.showTip=function(msg){
var tip='msg
';
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);
};
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
你用的 frame 框架,window.top 中,没有 $tip。