上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 39 下一页
摘要: 因工作需要 需要学习jsp方面的知识 这篇博客文章写得比较全面 我记录下: 一、什么是JavaBean JavaBean是一个遵循特定写法的Java类,它通常具有如下特点: 这个Java类必须具有一个无参的构造函数 属性必须私有化。 私有化的属性必须通过public类型的方法暴露给其它程序,并且方法 阅读全文
posted @ 2019-03-13 14:11 雪莉06 阅读(467) 评论(0) 推荐(0)
摘要: 工作中又用到了写SQL 好多年不用了 再拿过来温习下: 不觉豁然开朗 概述 GROUP BY我们可以先从字面上来理解,GROUP表示分组,BY后面写字段名,就表示根据哪个字段进行分组,如果有用Excel比较多的话,GROUP BY比较类似Excel里面的透视表。 GROUP BY必须得配合聚合函数来 阅读全文
posted @ 2019-03-12 14:53 雪莉06 阅读(4574) 评论(0) 推荐(0)
摘要: 近期工作中遇到了jquery cookie解决问题,顺便记录下: <div id="submenu"> <ul> <li><a id="tree" href="javascript:void(0);" onClick="rememberMenu(this.id);">树形菜单</a></li> <l 阅读全文
posted @ 2019-03-07 17:41 雪莉06 阅读(378) 评论(0) 推荐(0)
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.or 阅读全文
posted @ 2019-02-20 18:01 雪莉06 阅读(440) 评论(0) 推荐(0)
摘要: css 写起来并不难,但在大型项目中,就变得难以管理,特别是不同的人在 css 书写风格上稍有不同,团队上就更加难以沟通,为此总结了一些如何实现高效整洁的 css 代码原则。 css 优化的原则 1、不影响页面的布局 2、去掉不必要的样式 3、合并相同的样式 4、尽可能缩小样式的大小 css 样式中 阅读全文
posted @ 2019-02-15 14:17 雪莉06 阅读(461) 评论(0) 推荐(0)
摘要: 具体效果如下: 第一次加载如下图: 然后点击天蓝色按钮换成天蓝色皮肤如下图: 然后关闭网页重新打开或者在打开另一个网页如下图: 因为皮肤用Cookie保存了下来,所以不会重置 具体的实现代码如下: <!DOCTYPE html><html lang="en" xmlns="http://www.w3 阅读全文
posted @ 2019-02-12 17:56 雪莉06 阅读(286) 评论(0) 推荐(0)
摘要: 其中min、max可以自定义可以动态获取数据 yAxis : [ { type : 'value', axisLine:{show:true, lineStyle:{color:'#ccc'} }, axisTick:{ show:false, }, axisLabel:{ show:true, i 阅读全文
posted @ 2019-01-04 15:46 雪莉06 阅读(15567) 评论(0) 推荐(0)
摘要: option = { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], name:'分', nameLocation:'middle', nameTextStyle:{ color: 阅读全文
posted @ 2019-01-04 15:24 雪莉06 阅读(14802) 评论(0) 推荐(0)
摘要: $(function() { // 路径配置 require.config({ paths : { // echarts: 'http://echarts.baidu.com/build/dist' echarts : './plugins/echarts-2.2.7/doc/example/www 阅读全文
posted @ 2019-01-03 16:51 雪莉06 阅读(2066) 评论(0) 推荐(0)
摘要: geo: { map: 'china', center: [112.194115019531, 23.582111640625], zoom: 12, aspectScale: 1, //长宽比 label: { normal: { show: true, textStyle: { fontSize 阅读全文
posted @ 2019-01-03 15:15 雪莉06 阅读(13060) 评论(0) 推荐(1)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 39 下一页