2017年4月28日
摘要: 发现问题 检查问题的有效性 创建问题单 确认问题解决时间 修复问题 回归测试 关闭问题单 提交bug http://www.zentao.net/book/zentaopmshelp/133.html 阅读全文
posted @ 2017-04-28 09:34 DDLL11 阅读(146) 评论(0) 推荐(0) 编辑
  2016年7月6日
摘要: //添加时 map1.addEventListener("click", function (e) { if (doDraw == 0) { //判断是否绘制曲线完毕 var point = new BMap.Point(e.point.lng, e.point.lat); points.push(... 阅读全文
posted @ 2016-07-06 16:15 DDLL11 阅读(1402) 评论(0) 推荐(0) 编辑
摘要: 解决方案:1异步加载(jquery(function(){loadJScript();})) 2解析加载设置了个延迟(setTimeOut(getInit,1000)) 阅读全文
posted @ 2016-07-06 11:18 DDLL11 阅读(619) 评论(0) 推荐(0) 编辑
  2016年7月1日
摘要: var empList = from p in customers select new { p.Personnel_ID, p.PersonNa... 阅读全文
posted @ 2016-07-01 11:17 DDLL11 阅读(983) 评论(0) 推荐(0) 编辑
  2016年6月29日
摘要: 1 @{ 2 ViewBag.Title = "GIS地图"; 3 Layout = null; 4 } 5 6 @model HFSoft.Plat.UIWeb.Models.MapShowDataVO 7 8 <style> 9 body, html, #allmap { width: 100% 阅读全文
posted @ 2016-06-29 10:39 DDLL11 阅读(131) 评论(0) 推荐(0) 编辑
  2016年6月23日
摘要: var arrTime = (dtime).replace("/", "-").replace("/", "-"); var deTime = arrTime.split(" "); var ss = deTime[0]; var s1 = ss.split("-"); ... 阅读全文
posted @ 2016-06-23 10:55 DDLL11 阅读(666) 评论(0) 推荐(0) 编辑
  2016年6月22日
摘要: json字符串转json对象:jQuery.parseJSON(jsonStr); json对象转json字符串:JSON.stringify(jsonObj); var arrTime = ss.replace("/","-").replace("/","-") 阅读全文
posted @ 2016-06-22 16:50 DDLL11 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1、红色感叹号表示这个文件从服务器上下载下来以后,在本地被修改过。这时执行提交操作就可以了。2、黄色感叹号表示这个文件在提交的时候发现存在冲突,也就是说有别人在你提交之前对这个文件的同一个版本进行了修改。这时你需要查看这个文件的历史日志,和修改了这个文件的人进行沟通,将两个人的修改内容合并,合并完成 阅读全文
posted @ 2016-06-22 10:19 DDLL11 阅读(895) 评论(0) 推荐(0) 编辑
  2016年6月18日
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Mvc5.Models; namespace Mvc5.Controllers { public class HomeController : Controlle... 阅读全文
posted @ 2016-06-18 19:56 DDLL11 阅读(175) 评论(0) 推荐(0) 编辑
  2016年6月4日
摘要: var userName="Tony"; //根据用户名显示欢迎信息 function ss(_name){ alert("ss,"+_name); } 使用字符串形式可以达到想要的结果: window.setTimeout("ss(userName)",3000); 这里的字符串是一段JavaSc 阅读全文
posted @ 2016-06-04 21:17 DDLL11 阅读(3557) 评论(0) 推荐(0) 编辑