langulage
碳水化合物01
这个作者很懒,什么都没留下…
展开
-
记一次maven 打包导致字体不可用问题
代码public class HaiyanFontUtil { private static Font definedFont = null; public static Font getDefinedFont(String type, float size) { String fontUrl = Thread.currentThread().getC...原创 2019-11-29 09:43:06 · 2184 阅读 · 0 评论 -
nginx 反向代理
配置cd /etc/nginxvim nginx.conf # include /etc/nginx/conf.d/*.conf; // 一定要注释掉默认的配置文件 server { listen 80; server_name localhost; location ^~ /server/ { pr...原创 2019-11-21 08:56:35 · 91 阅读 · 0 评论 -
Jquery笔记
语法:$(selector).action()example:$(this).hide() //隐藏当前元素$("p").hide() //隐藏所有段落$("p.test").hide() //隐藏所有 class="test" 的段落$("#test").hide() //隐藏所有 id="test" 的元素 注意事项:$(document).ready(fu...原创 2018-07-24 10:59:44 · 129 阅读 · 0 评论