var divs = document.querySelectorAll('div'); // 1、传统方式解除事件 this.onclick = null; divs[0].onclick = function () { alert('hello'); this.onclick = null; } ...
分类:
其他好文 时间:
2020-05-31 22:01:24
阅读次数:
62
#例 #监听事件方法 #addEventListener()方法兼容性改变方法 var btns = document.querySelectorAll('button'); // 1、传统方式注册事件 btns[0].onclick = function () { alert('你好'); } / ...
分类:
其他好文 时间:
2020-05-31 19:38:02
阅读次数:
68
##一、实验目标 本实践的目标理解常用网络攻击技术的基本原理。 1、做不少于7个题目,共3.5分。包括(SQL,XSS,CSRF)。 2、抓图包括学号,P图或无学号,每张扣0.5分 ,超过两张者此项不得分。(1分) 3、抄袭别人者0分 ##二、实践过程 ###(一)实验环境 在本次实验中,用到的环境 ...
分类:
Web程序 时间:
2020-05-31 10:44:23
阅读次数:
84
一、P2656 采蘑菇 #include<cstring> #include<cstdio> #include<algorithm> #include<iostream> #include<cmath> using namespace std; #define maxn 80010 #define ...
分类:
其他好文 时间:
2020-05-31 00:58:12
阅读次数:
53
git:git@github.com:ccx19930930/services_register_and_discovery.git 参考链接:https://www.cnblogs.com/haippy/archive/2013/02/21/2920280.html down_service_mg ...
分类:
编程语言 时间:
2020-05-30 19:55:01
阅读次数:
56
【爱迪的懂】本期来学一学一个底部导航栏的基本实现~ 效果图:点击三个按钮任意一个,切换页面上文字。 步骤: 1.准备 开始前需要准备导航栏底部的图片,以及点击后变换的图片,这里共6张。放在 drawable 下 2.新建一个Activity ,修改他对应的布局文件 FrameLayout: 相当于一 ...
分类:
移动开发 时间:
2020-05-30 10:26:02
阅读次数:
85
1.前言 分布式微服务想要热更新配置文件,还需要 消息中间件 配合使用 ,一般使用 rabbitMQ 或 Kafka ,这里不解释 。 这篇随笔 只讲解 底层的 单机热更新配置文件 2.环境 spring boot : 2.1.6.RELEASE spring cloud : Greenwich.S ...
分类:
编程语言 时间:
2020-05-29 23:10:27
阅读次数:
119
#!/bin/bash # FILENAME:filelock # 默认重试次数 retries="10" # 默认操作 action="lock" # 用于锁文件的空命令 nullcmd="'which true'" # 设置选项 while getopts "lur:" opt; do case ...
分类:
其他好文 时间:
2020-05-29 23:01:51
阅读次数:
89
导航栏高亮: <div class="nav"> <ul> <li class="active" id="a1" onclick="setContentTabs('a',1,5)">东莞</li> <li id="a2" onclick="setContentTabs('a',2,5)">浙江</l ...
分类:
其他好文 时间:
2020-05-29 20:59:53
阅读次数:
76
<Table dataSource={this.dataSources} columns={this.columns} onRow={(record) => {//表格行点击事件 return { // onClick: this.clickRow.bind(this,record), onMous ...
分类:
其他好文 时间:
2020-05-29 17:37:17
阅读次数:
113