摘要:
1.函数声明和函数表达式 2.命名函数的赋值表达式 阅读全文
摘要:
优先级 通过上面的介绍,我们就可以得出一个代码执行的优先级: 同步代码 > process.nextTick > Promise(微任务)> setTimeout(fn)、setInterval(fn)(宏任务)> setImmediate(宏任务)> setTimeout(fn, time)、se 阅读全文
摘要:
1、html结构 2.对应的css样式 我是在看到laixiangran的博客时看到的感觉还不错,保留下来,一边以后可以拿来直接使用。 重要用到的background-clip,box-shadow,outline属性,不了解的同学可以查看W3School查看 阅读全文
摘要:
htm: data: js: 阅读全文
摘要:
1.底部画线,从左边开始,右边结束 html: <div class="silde-txt">底部划线</div> css: <style>.silde-txt{ width: 200px; color: red; position: relative; text-align: center; ma 阅读全文
摘要:
jquery中的Promise,也就是我们所知道的Deferred对象。 举例1: var data=""; function runAsync(){ var def = $.Deferred(); //做一些异步操作 setTimeout(function(){ console.log('执行完成 阅读全文