设置另一个button和text替代input file,隐藏input file。 <input type="file" id="tts-input-text" accept="text/plain" onChange={readFile} onClick={(e: any) => (e.targ ...
分类:
其他好文 时间:
2020-07-30 18:23:29
阅读次数:
130
<input type="button" value="Click" id="C" onclick="Go();"><input type="button" value="Wait" id="W" onclick="javascript:alert('Amazing!');"> <script>va ...
分类:
编程语言 时间:
2020-07-29 00:48:08
阅读次数:
125
一、javascript方式1、HTML中添加onclick哈哈2:JS中定义函数绑定事件!(写法一)var funcc = function () { alert('我爱编程') }var aa = document.getElementById('vv')aa.onclick = funcc3:... ...
分类:
其他好文 时间:
2020-07-27 17:51:43
阅读次数:
74
FridaHook框架学习(2) 前言 学习过程参考https://bbs.pediy.com/thread-227233.htm。 逆向分析 安装并运行例子程序,可以看到这个例子是一个验证注册码的程序。 使用jadx解析这个APK。 通过类名以及AndroidManifest可以猜测以及知道Lau ...
分类:
其他好文 时间:
2020-07-27 15:36:14
阅读次数:
71
concatenate与hstack、vstack的异同点: 都表示拼接数组,concatenate可以实现hstack和vstack的功能,只需要通过调整参数axis的值即可。 其中:v表示垂直(Vertical) h表示水平(Horizontal) axis=0,表示将拼接新行,相当于vstac ...
分类:
其他好文 时间:
2020-07-26 00:02:22
阅读次数:
80
JavaScript点击事件-一个按钮触发另一个按钮 <input type="button" value="Click" id="C" onclick="Go();"><input type="button" value="Wait" id="W" onclick="javascript:aler ...
分类:
编程语言 时间:
2020-07-25 23:48:35
阅读次数:
89
1 using System; 2 using System.Net; 3 using System.IO; 4 using System.Text; 5 using System.Text.RegularExpressions; 6 using System.Net.Security; 7 usi ...
分类:
其他好文 时间:
2020-07-25 23:19:26
阅读次数:
198
<script> var s=""; function f() { for (i=100;i<1000;i++){ //取得数字:个位 十位 百位 var a=i%10; //个位 var c=parseInt(i/100); //百位-获取整数 var b=parseInt(i/10)%10; / ...
分类:
Web程序 时间:
2020-07-24 21:53:16
阅读次数:
91
PUT /jzt_study_content { "mappings": { "content":{ "properties":{ "id":{ "type":"keyword" }, "title":{ "type":"text", "analyzer":"ik_max_word" }, "sor ...
分类:
其他好文 时间:
2020-07-24 16:26:16
阅读次数:
81
记住这个 resize()方法 from PIL import Image img=Image.open("test.png") x,y=img.size print(x,y) k=5 x=int(x*k) y=int(y*k) newimg=img.resize((x,y),Image.ANTIA ...
分类:
其他好文 时间:
2020-07-23 22:37:20
阅读次数:
83