随笔分类 -  JS

摘要:function fmtDate(obj){ var date = new Date(obj); var y = 1900+date.getYear(); var m = "0"+(date.getMonth()+1); var d = "0"+date.getDate(); return y+"-"+m.subs... 阅读全文
posted @ 2018-06-16 16:22 喝耶加雪啡的JAVA猴子 阅读(175) 评论(0) 推荐(0)
摘要:<table class="table" style="TABLE-LAYOUT:fixed;WORD-WRAP:break_word"> 阅读全文
posted @ 2018-06-16 12:41 喝耶加雪啡的JAVA猴子 阅读(203) 评论(0) 推荐(0)
摘要:<% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%> 阅读全文
posted @ 2018-06-16 10:34 喝耶加雪啡的JAVA猴子 阅读(422) 评论(0) 推荐(0)
摘要:jqueryDOM操作 jqueryDOM操作 1. 页面加载 函数 $( function(){ 具体内容 } ); 表示页面加载函数 2 dom 类操作 text() - 设置或返回所选元素的文本内容 html() - 设置或返回所选元素的内容(包括 HTML 标记) val() - 设置或返回 阅读全文
posted @ 2018-06-11 21:00 喝耶加雪啡的JAVA猴子 阅读(369) 评论(0) 推荐(0)
摘要:JavaScript在页面中的执行顺序 https://blog.csdn.net/superhoy/article/details/52946277 JavaScript在页面中的执行顺序 https://blog.csdn.net/superhoy/article/details/5294627 阅读全文
posted @ 2018-06-02 17:30 喝耶加雪啡的JAVA猴子 阅读(658) 评论(0) 推荐(0)
摘要:回顾: html: 超文本标记语言 后缀名: *.html 或 *.htm 标签分类: 围堵标签: 双标签 <html>标签体</html> 空标签: 单标签 <br/> 标签上的属性: <xxx 属性名="值" 属性名="值"></xxx> html结构: html: head: title me 阅读全文
posted @ 2018-05-11 17:31 喝耶加雪啡的JAVA猴子 阅读(178) 评论(0) 推荐(0)
摘要:JS 前端笔记 阅读全文
posted @ 2018-05-11 17:18 喝耶加雪啡的JAVA猴子 阅读(236) 评论(0) 推荐(0)