会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ning0_o
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
下一页
2016年7月14日
ajax请求成功,但没执行success(done),执行了error(fail)
摘要: 接收到的数据格式与dataType不同
阅读全文
posted @ 2016-07-14 16:05 ning0_o
阅读(477)
评论(0)
推荐(0)
2016年7月11日
字符串、数组之间的相互转换
摘要: 1、字符串转数组str.split(';'); //以分号拆分字符串2、数组转字符串arr.join(';'); //把数组项拼接成字符串,并以分号隔开。默认情况下是以逗号隔开
阅读全文
posted @ 2016-07-11 15:06 ning0_o
阅读(209)
评论(0)
推荐(0)
2016年7月9日
软件常用问题
摘要: 1、启动软件,如PS,得到一个配置错误15或16,表示软件权限错误,以管理员身份运行即可
阅读全文
posted @ 2016-07-09 11:00 ning0_o
阅读(121)
评论(0)
推荐(0)
echarts3各种配置项
摘要: 1、xAxis \ yAxis 坐标轴 yAxis : [ { type : 'value', minInterval: 1 //设置坐标的最小刻度,保证坐标轴刻度显示成整数 } ],
阅读全文
posted @ 2016-07-09 10:29 ning0_o
阅读(296)
评论(0)
推荐(0)
2016年6月27日
监听回车键
摘要: 1、监听回车 document.onkeyup=function(event){//JS监听回车 var e = event || window.event || arguments.callee.caller.arguments[0];//兼容IE if(e && e.keyCode=...
阅读全文
posted @ 2016-06-27 11:34 ning0_o
阅读(433)
评论(0)
推荐(0)
eclipse报错
摘要: 一、启动tomcat报错1、Address already in use。原因:端口被占用解决方法:(1)多次重启tomcat,但占用的端口进程并没有关闭,打开任务管理器关闭javaw.exe进程。(2)在cmd中输入命令:netstat -ano,查看被占用的端口
阅读全文
posted @ 2016-06-27 10:42 ning0_o
阅读(107)
评论(0)
推荐(0)
2016年3月16日
让div可编辑,设置标签的可读可写属性
摘要: 1、添加contenteditable属性让文本处于可编辑状态,这里可以编辑contenteditable: "inherit";(默认)contenteditable: "plaintext-only";(输入纯文本)contenteditable: "true";contenteditable:...
阅读全文
posted @ 2016-03-16 15:51 ning0_o
阅读(1059)
评论(0)
推荐(0)
2016年2月16日
引入多个库,$冲突问题
摘要: $所有权归后者。例如,若JQuery在Base之前引入,那么$所有权归Base
阅读全文
posted @ 2016-02-16 09:39 ning0_o
阅读(87)
评论(0)
推荐(0)
2016年2月4日
js获取宽、高
摘要: 网页可见区域宽: document.body.clientWidth;网页可见区域高: document.body.clientHeight;网页可见区域宽: document.body.offsetWidth (包括边线的宽);网页可见区域高: document.body.offsetHeig...
阅读全文
posted @ 2016-02-04 10:20 ning0_o
阅读(223)
评论(0)
推荐(0)
2016年1月25日
判断滚动滚动到底部
摘要: $(function(){$('#aa').on('scroll', function(){var 容器固定高度 = $('#aa').height();var 文档高度 = $('#aa').scrollHeight;var 滚动条位置 = $('#aa').scrollTop();if(文档高度...
阅读全文
posted @ 2016-01-25 23:04 ning0_o
阅读(166)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
下一页
公告