V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  DOLLOR  ›  全部回复第 78 页 / 共 151 页
回复总数  3018
1 ... 74  75  76  77  78  79  80  81  82  83 ... 151  
2020-06-16 08:49:35 +08:00
回复了 pudgedoor 创建的主题 健康 感觉一只耳朵闷闷的,堵住了
我是遇到耵聍栓塞,去医院洗耳朵之后,有如万物复苏的感觉。
2020-06-16 08:21:44 +08:00
回复了 constantine008 创建的主题 English 这句话应该怎么翻译, The show is starting in twenty minutes
离演出开始还有二十分钟。
这样没歧义了。
看那参数名、变量名就知道,你这代码是混淆过的,是混淆工具把 true 和 false 变成!0 和!1 的,并不是当时开发者这么写的。
2020-06-15 10:26:01 +08:00
回复了 loli 创建的主题 YouTube YouTube 为什么能做到只推送我感兴趣的视频?
我刚好相反,YouTube 总是给我推不喜欢的东西,点了几百次不喜欢还是孜孜不倦地推,尤其是那些政治视频……
<textarea style="width: 90%;height: 300px;"></textarea>
<br>
<input type="file">
<a href="#" download="">保存</a>
<script>
document.querySelector('input[type=file]').addEventListener('change', function () {
let file = this.files[0];
let fr = new FileReader();
fr.readAsText(file);
fr.onload = function () {
document.querySelector('textarea').value = this.result;
document.querySelector('a[download]').download = file.name;
};
});

document.querySelector('a[download]').addEventListener('mouseover', function () {
this.href = 'data:text/plain,' + encodeURIComponent(document.querySelector('textarea').value);
});
</script>
1 ... 74  75  76  77  78  79  80  81  82  83 ... 151  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2680 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 36ms · UTC 15:35 · PVG 23:35 · LAX 07:35 · JFK 10:35
Developed with CodeLauncher
♥ Do have faith in what you're doing.