在渲染进程(UI界面)中使用shell模块 //在文件管理器中打开 const { ..., shell } = require('electron'); const showFile = () => { if (!filePath) { return alert('This file has no ...
分类:
系统相关 时间:
2020-06-16 18:13:06
阅读次数:
67
window.onload = function(){ alert("welcome"); } 语句的作用是希望在页面加载完,自动执行定义js代码(function)。 $(document).ready(function(){.... }) 这个函数是用来取代页面中的window.onload; ...
分类:
Web程序 时间:
2020-06-15 20:52:25
阅读次数:
86
事件处理程序分为DOM0级和DOM2级,如果是用onclick方式绑定的事件可以用如下方法取消: 1 btn.onclick=null;//删除事件处理程序 如果使用addEventListener()方法添加事件,可以通过removeEventListener()移出事件,需要注意两点:1.rem ...
分类:
Web程序 时间:
2020-06-15 17:54:13
阅读次数:
156
<?php /** * \d:0-9 \D:取反 * \w:0-9 a-z A-Z _ \W:取反 * \s:空白符 \S:除了空白符 * * 元字符: * . 除了换行符之外的任意字符 * * 匹配前面字符出现一次0次或者多次 * ? 出现一次或0次 * ^ 必须以它开头 * $ 必须以它结尾 * ...
分类:
Web程序 时间:
2020-06-15 17:43:54
阅读次数:
76
JavaScript弹出框 警告框alert (常用于消息提示,比如注册成功等等) <script> function register(){ alert("注册成功"); } </script> <button onclick="register()">注册</button> View Code ...
分类:
编程语言 时间:
2020-06-14 14:59:36
阅读次数:
62
记录 谷歌 XSS 小游戏 第一关 </b><script>alert("Borber")</script> 第二关 <p>hello <a name="n" href="javascript:alert('Borber')"><em>Borber</em></a></p> 第三关 https:// ...
分类:
其他好文 时间:
2020-06-14 12:41:32
阅读次数:
116
ES5继承 function Person(name, age) { this.name = name; this.age = age; } Person.prototype.sayName = function () { alert(`My name is ${this.name}.`); ret ...
分类:
Web程序 时间:
2020-06-14 10:29:21
阅读次数:
57
Oracle索引修复 ,ORA-00600: internal error code, arguments: [6200], 问题背景:客户反馈DB每天产生的incident日志很多,需要排查原因 查看alert日志发现大量的ORA-07445、ORA-00600错误 1 Errors in fil ...
分类:
数据库 时间:
2020-06-13 11:13:12
阅读次数:
51
Oracle索引修复 ,ORA-00600: internal error code, arguments: [6200], 问题背景:客户反馈DB每天产生的incident日志很多,需要排查原因 查看alert日志发现大量的ORA-07445、ORA-00600错误 1 Errors in fil ...
分类:
数据库 时间:
2020-06-13 11:02:06
阅读次数:
44
Oracle启动报错:ORA-03113: end-of-file on communication channel问题背景:客户启动测试环境数据库报错 1 SQL> startup 2 ORACLE instance started. 3 Total System Global Area 1068 ...
分类:
数据库 时间:
2020-06-13 10:58:24
阅读次数:
54