// 文件点击下载 function downloadFile() { fetch(tossactApi + params.row.originVideo).then(res => res.blob()).then(blob => { const a = document.createElement ...
分类:
其他好文 时间:
2021-03-26 15:14:30
阅读次数:
0
使用element UI的upload组件 handleChange (file, fileList) { let _this = this if (this.formdata.printMode !== 'Bartender') return this.formdata.remark = file ...
分类:
数据库 时间:
2021-03-26 15:14:15
阅读次数:
0
wpa_supplicant and Hotspot 2.0 This document describe how the IEEE 802.11u Interworking and Wi-Fi Hotspot 2.0 (Release 1) implementation in wpa_suppli ...
分类:
其他好文 时间:
2021-03-18 14:15:04
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script> window.onload = function () { var btn = document.getEleme ...
分类:
Web程序 时间:
2021-03-18 14:03:56
阅读次数:
0
for循环 for循环就是对数组的元素进行循环。 语法: for (初始化变量; 条件表达式; 迭代语句) { 需要执行的代码块; } 初始化变量:一般用来对循环变量进行初始化赋值。 条件表达式:作为循环条件,一个包含比较运算符的表达式,用来限定循环变量的边限。如果循环变量的值超出了该边限,则停止该 ...
分类:
编程语言 时间:
2021-03-16 14:00:43
阅读次数:
0
基础 基础语法 $(selector).action()$ 文档就绪事件 <script> $(document).ready(function(){ // 开始写 jQuery 代码... }); //简洁写法 $(function(){ // 开始写 JQuery 代码 }) </script> ...
分类:
Web程序 时间:
2021-03-16 13:49:39
阅读次数:
0
JQuery jQuery是一个轻量级的、兼容多浏览器的JavaScript库。 jQuery使用户能够更方便地处理HTML Document、Events、实现动画效果、方便地进行Ajax交互,能够极大地简化JavaScript编程。它的宗旨就是:“Write less, do more.“ jQ ...
分类:
Web程序 时间:
2021-03-15 10:46:05
阅读次数:
0
1、改变元素内容: ①、element.innerText:不能识别HTML标签,同时也会去除空格和换行:非标准 var box = document.querSelector('div'); box.innerHTML = ‘<strong> 今天是:</strong>’ ②、element.in ...
分类:
Web程序 时间:
2021-03-09 13:37:17
阅读次数:
0
首先对图片懒加载的函数的封装 1 var n=0;//存储图片的位置,避免每次都从第一张图片进行加载 2 function lazyload(imgs) { 3 //获取可视区的高度 4 var height = document.documentElement.clientHeight 5 //获 ...
分类:
编程语言 时间:
2021-03-08 13:50:25
阅读次数:
0
1、快速创建页面结构: mDoctype HTML: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Document</title> <meta name="viewport" content="wid ...
分类:
其他好文 时间:
2021-03-08 13:35:36
阅读次数:
0