04 2017 档案
摘要:参考这篇文章:https://lzw.me/a/mysql-charset.html 还有一篇官方文档:https://dev.mysql.com/doc/refman/5.7/en/charset.html
阅读全文
摘要:http://stackoverflow.com/questions/2559616/javascript-true-form-reset-for-hidden-fields 把input type="hidden" 修改为 : type="text" style="display:none;"
阅读全文
摘要:Adding two numbers concatenates them instead of calculating the sum JavaScript里两个变量 var a = 2; var b = 1; var c = "(" + a + b +")"; alert(c); 结果输出:(21
阅读全文
摘要:WIN10快捷键 多桌面切换:WIN + CTRL + ←/→ 桌面横竖屏转向:ALT + CTRL + ←/→
阅读全文
摘要:package org.springframework.beans; public abstract class BeanUtils 我们会遇到场景:将某个Bean实例的字段全部或者拷贝到另一个Bean的实例中。 如果是项目没有使用Spring框架,我们只能免为其难,自己写了(当然我们可以把这套代码
阅读全文
摘要:This is a paragraph. 复制每个 p 元素,然后追加到 body 元素
阅读全文