码迷,mamicode.com
首页 > 编程语言 > 详细

ES6新增了俩JavaScript关键字let和const,你知道吗?

时间:2020-08-10 09:30:58      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:tmp   ali   cee   区块   boolean   miss   bind   ready   出现   

// 提示信息
// 使用 ShowTip("请输入要搜索的处理机构!", ‘info‘);
function ShowTip(tip, type) {
    var $tip = $(‘#tip‘);
    if ($tip.length == 0) {
    // 设置样式,也可以定义在css文件中
        $tip = $(‘<span id="tip" style="transform:translate(-50%,-50%);position:fixed;top:50%;left: 50%;z-index:9999;height:28px; padding: 2px 16px;line-height: 28px;color:#fff;background:rgba(0,0,0,0.7);font-size:12px;border-radius:4px;"></span>‘);
        $(‘body‘).append($tip);
    }
    $tip.stop(true).prop(‘class‘, ‘alert alert-‘ + type).text(tip).fadeIn(500).delay(1000).fadeOut(500);
}

// 正在加载中
//loading.ShowLoading(); 显示   loading.CloseLoading();隐藏
var loading={
    loadingHtml:‘<div class="loading" style="display: flex;align-items: center; transform:translate(-50%,-50%);position:fixed;top:50%;left: 50%;z-index:9999;height:28px; padding: 2px 16px;line-height: 28px;color:#fff;background:rgba(0,0,0,0.7);font-size:12px;border-radius:4px;"><img style="width: 14px;height: 14px;margin-right: 6px;" src="img/loading.gif" />正在加载中</div>‘,
    ShowLoading:function(){
        $(‘body‘).append(loading.loadingHtml);
    },
    CloseLoading:function(){
        $(‘body .loading‘).remove();
    }
}

 

// 提示信息// 使用 ShowTip("请输入要搜索的处理机构!", ‘info‘);function ShowTip(tip, type) {    var $tip = $(‘#tip‘);    if ($tip.length == 0) {    // 设置样式,也可以定义在css文件中        $tip = $(‘<span id="tip" style="transform:translate(-50%,-50%);position:fixed;top:50%;left: 50%;z-index:9999;height:28px; padding: 2px 16px;line-height: 28px;color:#fff;background:rgba(0,0,0,0.7);font-size:12px;border-radius:4px;"></span>‘);        $(‘body‘).append($tip);    }    $tip.stop(true).prop(‘class‘, ‘alert alert-‘ + type).text(tip).fadeIn(500).delay(1000).fadeOut(500);}


// 正在加载中//loading.ShowLoading(); 显示   loading.CloseLoading();隐藏var loading={loadingHtml:‘<div class="loading" style="display: flex;align-items: center; transform:translate(-50%,-50%);position:fixed;top:50%;left: 50%;z-index:9999;height:28px; padding: 2px 16px;line-height: 28px;color:#fff;background:rgba(0,0,0,0.7);font-size:12px;border-radius:4px;"><img style="width: 14px;height: 14px;margin-right: 6px;" src="img/loading.gif" />正在加载中</div>‘,ShowLoading:function(){$(‘body‘).append(loading.loadingHtml);},CloseLoading:function(){$(‘body .loading‘).remove();}}

ES6新增了俩JavaScript关键字let和const,你知道吗?

标签:tmp   ali   cee   区块   boolean   miss   bind   ready   出现   

原文地址:https://blog.51cto.com/14886659/2518311

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!