之前用select2初始化默认值使用了select2('val','1'),这样做没问题,但只能用在单选上,多选的话,即使将val后面的值改成数组['0', '2']这种形式也没用。 <script type="text/javascript"> $(document).ready(function ...
分类:
其他好文 时间:
2021-04-21 12:17:22
阅读次数:
0
首先,从存储的位置来看,可以这么划分: 1. 服务端缓存:session 2. 浏览器端缓存:cookie,localStorage,sessionStorage 其中,cookie也可以在服务端进行操作 localStorage :~5MB,数据永久保存直到用户手动删除sessionStorage ...
分类:
其他好文 时间:
2021-04-21 11:54:12
阅读次数:
0
document.write插入标签会覆盖页面的问题 document.write插入js标签会覆盖页面又两种情况: 通过onclick() 点击事件触发执行document.write(),会使document.write()覆盖原来的页面。 在window.onload里面执行document. ...
分类:
其他好文 时间:
2021-04-21 11:53:09
阅读次数:
0
通常我们将 CANVAS 与 webGL 区分开 , 移动端和WEB端区分开 类似于这种关系: // 通过getElementById()方法获取canvas画布 var c2dx=document.getElementById('c2dx'); // 通过方法getContext()获取2d上下文 ...
分类:
Web程序 时间:
2021-04-20 14:57:58
阅读次数:
0
在下面这个 StackOverflow 的线索里进行了讨论: https://stackoverflow.com/questions/9895202/what-is-the-difference-between-window-screen-and-document-in-javascript win ...
分类:
编程语言 时间:
2021-04-19 16:04:43
阅读次数:
0
<!DOCTYPE html> <html> <head> <script type="text/javascript"> window.onload=function(){ document.getElementById("too").playbackRate=10; } </script> </ ...
分类:
Web程序 时间:
2021-04-19 15:53:42
阅读次数:
0
export_excel(){ this.axios.get('downExcelView/',{responseType:'blob'}).then(res=>{ var blob = new Blob([res.data], {type: 'application/vnd.openxmlform ...
分类:
其他好文 时间:
2021-04-19 15:08:07
阅读次数:
0
根据提示查看源码,看到p1与p2以及后面的eval 看到p1的字符串,想到URL编码,故解码之 p1=function checkSubmit(){var a=document.getElementById("password");if("undefined"!=typeof a){if("67d7 ...
分类:
Web程序 时间:
2021-04-15 12:40:32
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
其他好文 时间:
2021-04-15 12:22:57
阅读次数:
0
参考链接: https://captcha.anji-plus.com/#/doc https://github.com/anji-plus/captcha http://doc.ruoyi.vip/ruoyi-vue/document/cjjc.html#%E9%9B%86%E6%88%90aj- ...
分类:
其他好文 时间:
2021-04-14 11:53:09
阅读次数:
0