function a(){ alert("a"); } function b(){ alert("b"); } <input type="button" onclick="a()" /> 要将button的onclick改为b()方法,最保险的做法是: $("input[type=button]") ...
分类:
Web程序 时间:
2019-12-27 15:32:22
阅读次数:
91
curl: (35) schannel: next InitializeSecurityContext failed: SEC_E_ILLEGAL_MESSAGE (0x80090326) - This error usually occurs when a fatal SSL/TLS alert ...
分类:
其他好文 时间:
2019-12-27 00:36:55
阅读次数:
788
hive中可能会出现一个非常常见的异常:Specified key was too long;max key length is 767 bytes?是mysql/hive字符集问题。需要改变hive元数据库的字符集:mysql>alert database ruozedata character ...
分类:
其他好文 时间:
2019-12-26 19:14:17
阅读次数:
69
插件下载:https://gitee.com/zypy333/layui-excel 1.添加js 添加js <script type="text/javascript" src="${pageContext.request.contextPath}/XXX/XXX/layui_exts/excel ...
分类:
其他好文 时间:
2019-12-26 16:18:56
阅读次数:
1741
[TOC] LOG logging 模块提供模块级别的函数记录日志 包括四大组件 1. 日志相关概念 1.1 日志的级别 level 1. DEBUG 2. INFO 3. NOTICE 4. WARNING 5. ERROR 6. CRITICAL 7. ALERT 8. EMERGENCY 用户 ...
分类:
编程语言 时间:
2019-12-24 22:09:29
阅读次数:
124
OpenSSL: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version ...
分类:
其他好文 时间:
2019-12-24 12:14:21
阅读次数:
777
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>javascript输出</title> </head> <body> <h3>1.window.alert() 弹出警告框。</h3> <p style="cursor: poi ...
分类:
编程语言 时间:
2019-12-23 13:10:16
阅读次数:
51
实际编写前端页面时,有时候希望一打开某个页面就加载一些方法。下面是4种预加载方法。 ①页面加载完之前执行,与嵌入的js加载方式一样(写jquery插件的时候使用) (function ($) { alert('start'); })(jQuery); ②页面加载后执行。 $(document).re ...
分类:
Web程序 时间:
2019-12-22 00:51:09
阅读次数:
131
Description Given an integer array nums with all positive numbers and no duplicates, find the number of possible combinations that add up to a positiv ...
分类:
其他好文 时间:
2019-12-21 22:30:21
阅读次数:
119
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...