// 第一种写法 $(document).ready(function() { }); // 第二种写法 $().ready(function() { }); // 第三种写法 $(function() { }); jQuery入口函数与window.onload的对比 JavaScript的入口函 ...
分类:
其他好文 时间:
2021-03-01 13:46:55
阅读次数:
0
知识梳理 // 1 一般情况下 this的最终指向都是 调用它的对象 // 2 全局作用域 普通函数 定时器 的this都指向了 window对象 // 3 构造函数的this 指向自己的实例 <script> // 1 全局作用域 普通函数 定时器 的this都指向了全局对象 window con ...
分类:
其他好文 时间:
2021-02-27 13:19:24
阅读次数:
0
<script>function getQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i<vars.length ...
分类:
Web程序 时间:
2021-02-27 13:14:25
阅读次数:
0
什么是docker docker中的容器: lxc --> libcontainer --> runC OCI&OCF OCI Open Container-initiative 由Linux基金会主导于2015年6月创立 旨在围绕容器格式和运行时制定一个开放的工业化标准 包含两种规格 运行时规范( ...
分类:
其他好文 时间:
2021-02-27 12:59:59
阅读次数:
0
透彻解析!2021年上半年最接地气的Android面经,完整版开放下载 ...
分类:
移动开发 时间:
2021-02-26 13:27:25
阅读次数:
0
1.windows下调试时需要将hadoop.dll文件放到C:\Windows\System32下,网上很多说改源码的,其实这样也是ok的,不然会报权限错误 Exception in thread "main" java.lang.UnsatisfiedLinkError: org.apache. ...
一般企业级路由器都带有强大的网络管理功能、内置强大的系统软件和应用软件,企业级路由器内部flash上有个文件系统该文件系统不对外开放,不可直接管理,只是开放了一小部分文件夹作为可以直接管理的部分,里面存放着全局配置文件、日志文件、系统镜像文件、证书、诊断文件、版权声明等等。我们可以上传、下载、查看、 ...
分类:
其他好文 时间:
2021-02-26 13:20:51
阅读次数:
0
直接使用window.scroll or window.scrollTo设置滚动时,在iOS下没有滚动动画效果可以安装smoothscroll-polyfill包来解决这个问题 安装完再直接使用window.scroll or window.scrollTo即可 git地址:https://gith ...
分类:
移动开发 时间:
2021-02-26 13:10:02
阅读次数:
0
The expensive shops in a famous arcade near Piccadilly were just opening. At this time of the morning, the arcade was almost empty. Mr. Taylor, the ow ...
分类:
其他好文 时间:
2021-02-26 13:05:25
阅读次数:
0
例如 _sopen_s 在磁盘空间不够的时候, 宏 errno 就会返回 ENOSPC(28) MSDN 文档时只提到以下错误码 errno valueCondition EACCES The given path is a directory, or the file is read-only, ...