`
文章列表
压缩当前目录下及子目录中,指定某一种格式类型的文件   zip zipName.zip * -i "*.type" -r zipName.zip 压缩包名称 * 当前文件夹路径 -i 指定文件 "*.type" 某一类型文件,eg "*.html”,*为通配符,表示所有名称 -r 迭代至所有子目录  
/*看重点的在最后一行*/————————————————————————————————————————————最近项目需求使用一个地图插件mapbox,界面挺好看的,可应用在web端和客户端。 然而国内用的人很少,API需要自己啃,艰难。客户又要好看的界面,又要提供中文服务,摔!于是采用了和百度地图提供的API结合的方式来实现。需要完成的功能:1.Geocoding:经纬度与地址互相转换2.手动输入地址查询,就是百度地图的搜索功能百度地图提供的API很齐全,此次主要使用的是Geocoding和Place Suggestion2个服务,另还使用了JavaScript API里面的autoc ...
乱码如图: 解决方案: cygwin左上角->options->text-> locale->C character->GBK   +——+华丽的分割线   文件夹及文件显示乱码错误解决方案:cygwin64\etc\skel —————————————————— .bash_profile文件末尾添加 —————————————————— export LC_ALL=zh_CN.GBK export LC_CTYPE=zh_CN.GBK export LANG=zh_CN.GBK export XMODIFIERS=@im=C ...
// answerDetail = answerDetail.replace(/\s/g, ""); // answerDetail = answerDetail.replace(/<\/?[^>]*>/g,''); //去除HTML tag // answerDetail = answerDetail.replace(/&nbsp;/ig,'');//去掉&nbsp;  
_noticeFn = function(fnType,id,el){//公告的新增和编辑 art.dialog({ title: fnType+"公告", content: document.getElementById('noticeDialog'), lock: true, drag:true, initialize:function(){ if(fnType=='新增'){//新增公告 $("#notice-title").val(""); detail = &q ...
http://www.cnblogs.com/echoloyuk/archive/2012/02/06/2339924.html http://cn.bing.com/ http://www.daqianduan.com/chrome-input-textarea/   ie input的padding失效 chrome表单的focus效果

css3:box-shadow

    博客分类:
  • css
http://www.w3.org/TR/css3-background/#the-box-shadow   box-shadow:inset 0 0 10px  #ccced2;   内阴影inset
Window 对象 Window 对象表示浏览器中打开的窗口。如果文档包含框架(frame 或 iframe 标签),浏览器会为 HTML 文档创建一个 window 对象,并为每个框架创建一个额外的 window 对象。   手中的一个项目包含iframe与父窗口的交互,之前的一个同事的调用一个基于jQuery组件的方法是 parent.$.functionName  之前没太弄明白这么写的原因,待到需要自己来开发别的模块的时候,查了一下资料   window.parent→→返回父窗口   需要这么写的需求是,因为页面内嵌有一个iframe模块,而现在需要调用一个弹出 ...
var re = /^\d+$/; function jump(){ if(!re.test(document.getElementById('go2').value)){ return false; } if(document.getElementById('go2').value<=0 ||document.getElementById('go2').value>$pageCount){ return false; } window.location.href='$base/columnEx/$obj.channel.urlKey/$obj.d ...

css使网页变为灰度

    博客分类:
  • css
html { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); _filter:none; }  
var reg = /(([\,,,]*\d{4}-\d{2}-(\/*\d{2})+)+)\s*([\(|(]\S+[\)|)])*\s*((\/*\d{2}[:,:]\d{2})+)\s*([\(|(]\S+[\)|)])*/; function getData(date,channelId){ renderCalendar(); $.post( '/info/calendar/list/json', { 'date':date, 'channelId':channelId }, function(data){ ...
1. jQuery UI 有一款插件 jquery.ui.datepicker-zh-CN.js,这个是日期选择, 基于需求加入了 jquery-ui-timepicker-addon.js 时间选择   jQuery版本:jquery-1.7.2.min.js jQuery UI版本jquery-ui-1.8.21.custom.min.js   以上环境中,时间插件chrome和IE均报错   Error parsing the date string: Extra/unparsed characters found in date: 00:00:00 date st ...
将插件版本更新之后,发现校验插件对于表单的隐藏域不进行验证了,网上搜了一下,发现是因为新版本中 defaults: { messages: {}, groups: {}, rules: {}, errorClass: "error", validClass: "valid", errorElement: "label", focusInvalid: true, errorContainer: $([]), errorLabelContainer: $([]), onsub ...
var fileType = $.trim(n.resourcesMapping.extension).toLowerCase(); if($.inArray(fileType,fileTypeList)=='-1'){//其他 row.find(".fileType").addClass('other'); }else{ row.find(".fileType").addClass(fileType); }  ie8真是各种吐槽无能   1.不识别object.trim();方法   解决方法:$.trim(object ...
开发项目写功能的时候,需要将ajax的返回值赋到全局变量中,然后在该页面其他地方引用,因为ajax异步的原因一直无法成功,只需将async:false,就OK了。   写这个帖子的原因是因为。。。每次需要同步的时候,我记不住‘asyns'这个单词的拼写,每次都得去其他的js里面粘一边过来,为了加深记忆,决定写个使后感。。。   async (default: true) Type: Boolean By default, all requests are sent asynchronously (i.e. this is set to true by default). ...
Global site tag (gtag.js) - Google Analytics