ES6新增了俩JavaScript关键字let和const,你知道吗?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6新增了俩JavaScript关键字let和const,你知道吗?相关的知识,希望对你有一定的参考价值。
// 提示信息 // 使用 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,你知道吗?的主要内容,如果未能解决你的问题,请参考以下文章