// 设计稿自定义为375px 利用测量的px大小除以50px 即可得到所需rem值 (function () { remLayout(); function remLayout() { // 获取屏幕宽度 var w = document.documentElement.clientWidth | ...
分类:
其他好文 时间:
2020-06-17 23:47:50
阅读次数:
99
一、文档就绪事件(jQuery入口函数) 您也许已经注意到在我们的实例中的所有 jQuery 函数位于一个 document ready 函数中: $(document).ready(function(){ // 开始写 jQuery 代码... }); 这是为了防止文档在完全加载(就绪)之前运行 ...
分类:
Web程序 时间:
2020-06-17 23:32:12
阅读次数:
73
1.document对象 常用属性:referrer:返回当前载入文档的URL URL:返回当前文档的URL 常用属性语法:document.referrer document.URL 常用方法:getElementByld(); getElementsByName(); getElementByT ...
分类:
Web程序 时间:
2020-06-17 20:34:37
阅读次数:
75
在安装mysql时,出现“The security settings could not be applied to the database because the connection has failed with the following error. Error Nr. 1045 Acc ...
分类:
移动开发 时间:
2020-06-17 15:33:57
阅读次数:
100
网址:https://help.aliyun.com/document_detail/121898.html?spm=a2c4g.11186623.6.559.c58f2430eBmuaf 可直接使用 <template> <div> <div id="__nc" style="margin-lef ...
分类:
其他好文 时间:
2020-06-17 11:12:53
阅读次数:
206
若依真的是一款非常好用的后台管理系统,可修改性强,功能完善界面美观 若依git地址:若依下载 若依线上演示地址:若依首页 若依参考文档:http://doc.ruoyi.vip/ruoyi/document/zjwd.html#select2 若依采用Thymeleaf语言,推荐参考我爱圆溜溜博主的 ...
分类:
其他好文 时间:
2020-06-17 11:05:30
阅读次数:
300
如果想从头学起Cypress,可以看下面的系列文章哦 https://www.cnblogs.com/poloyy/category/1768839.html 作用 获取页面的标题, document.title 语法格式 cy.title() cy.title(options) options:只 ...
分类:
其他好文 时间:
2020-06-16 23:38:54
阅读次数:
62
(function() { let myTool = { $: function(id) { return typeof id "string" ? document.getElementById(id) : null }, screenClient: function() { if (window ...
分类:
其他好文 时间:
2020-06-16 23:05:47
阅读次数:
54
Js--DOM详解 博客说明 文章所涉及的资料来自互联网整理和个人总结,意在于个人学习和经验汇总,如有什么地方侵权,请联系本人删除,谢谢! 概念 Document Object Model 文档对象模型 将标记语言文档的各个组成部分,封装为对象。可以使用这些对象,对标记语言文档进行CRUD的动态操作 ...
分类:
Web程序 时间:
2020-06-16 15:33:07
阅读次数:
99
音频文件转base64 <input type="file" id="fileInput"> <script> var fileInput = document.querySelector('#fileInput'); fileInput.onchange = function () { var f ...
分类:
其他好文 时间:
2020-06-16 15:12:46
阅读次数:
693