attention:不仅仅是文本框内的选择会被脚本记录,在本页面内所有的选取都会被记录 function GetSelectedText (){ var userSelection, ta; if (window.getSe...
[Javascript]Cookie操作测试
测试页面尝试设置cookies里加入test cookie document.writeln("") function setCookie (cookieName, cookieValue, cookiePath, cookieEx...
[转载]7个你可能不认识的CSS单位
译:Emma (https://github.com/simaQ/cssfun/issues/1)【如有雷同纯属巧合;如要转载,请注明出处(虽然概率接近于0)】 注: 原文链接 7 CSS Units You Might Not Kn...
[Javascript]UTF-8编码解码
编码本来不准备写的,因为实现起来比较简单,不过平时有时侯自己要用。网上那一堆,全部一模一样的效果,解个繁体出来都是乱码 解码 编码 var refresh = function() { if(document.get...
[转]CSS布局奇淫技巧之--各种居中
转这篇文章就是我发现这段代码有效,并且我居然不知道为什么有用。 1234567.demo { position:fixed; top: 50%; left: 50%; transform: trans...
[Javascript]中文等字符转化为unicode(UTF-16 LE)
嘛,挺不错的。原文:http://blog.csdn.net/geovindu/article/details/9119725 利用的javascript的 charCodeAthttp://www.w3school.com.cn/j...
[Terminal] PowerShell版本更新
Win7 只有升级 PowerShell 之后才能使用[Chocolatey](/Software/Software Update) WinRM(PowerShell Remoute)的参数不兼容 总之就是我看...
[Terminal]计算机建立虚拟Wifi热点
Win 10有个直接开热点的设置,所以下面可能就用不到了https://www.intel.cn/content/www/cn/zh/support/articles/000023257/network-and-i-o/wireles...
[Git]设置查看和取消代理
1git config --global http.proxy socks5://127.0.0.1:7890 1git config --global --unset http.proxy 1git config --global...
Linux中find批量删除空文件夹
1find -type d -empty | xargs -n 1 rm -rf 来自https://www.cnblogs.com/jt2001/p/6081235.html 为避免意外,可以考虑使用rm -r而不是rm -rf ...