作者 王晓刚
1 个管道 的构建 通过 耗费 0 秒

测试

... ... @@ -105,7 +105,7 @@
同意<a href="{:url('agreement/index2')}">《协议》</a></div>
<div class="regbtn survey_btn">提交</div>
<!--toast-->
<div id="toast" style="display: none;">
<div id="toast" style="display: block;">
<div class="weui-mask_transparent"></div>
<div class="weui-toast">
<p class="weui-toast__content">已完成</p>
... ...
... ... @@ -16,7 +16,8 @@ function move() {
function toast(that) {
var $toast = $('#toast');
stop()
$toast.find(".weui-toast__content").html(that)
$toast.find(".weui-toast__content").html(that);
if ($toast.css('display') != 'none') return;
$toast.fadeIn(100);
setTimeout(function () {
... ...