移动端自定义错误提示
Posted Xpress
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端自定义错误提示相关的知识,希望对你有一定的参考价值。
//错误提示 function alertWrap(Tiptext) { var ohtml = \'<div id="errTip"><span>\' + Tiptext + \'</span></div>\'; $("#errTip").css({ \'top\': \'0%\', \'opacity\': \'0\', \'z-index\':\'999\' }); $("body").append(oHtml); setTimeout(function() { $("#errTip").css({ \'top\': \'50%\', \'opacity\': \'1\', \'z-index\':\'999\' }); }, 10) setTimeout(function() { $(\'#errTip\').css({ \'top\': \'0%\', \'opacity\': \'0\', \'z-index\':\'-1\' }); setTimeout(function() { $("#errTip").remove(); }, 500); }, 2000) }
以上是关于移动端自定义错误提示的主要内容,如果未能解决你的问题,请参考以下文章