会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
6
7
8
9
10
11
12
13
下一页
2020年7月23日
Url.Action 指定 Area 和 Controller
摘要: @Url.Action("{action}", "{controller}", new { Area = "areaname" }); @Html.ActionLink("LinkName", "{action}", "{controller}", new { area = "{areaname}"
阅读全文
posted @ 2020-07-23 11:08 wakaka_wka
阅读(496)
评论(0)
推荐(0)
编辑
2020年7月10日
extjs grid 隐藏筛选行
摘要: $('.x-group-sub-header').hide()
阅读全文
posted @ 2020-07-10 23:01 wakaka_wka
阅读(296)
评论(0)
推荐(0)
编辑
2020年7月7日
JS 获取当前日期加一天之后的日期
摘要: new Date(( new Date()).getTime()+1000*60*60*24);
阅读全文
posted @ 2020-07-07 22:36 wakaka_wka
阅读(3163)
评论(0)
推荐(0)
编辑
2020年6月23日
ExtJs GridFilter 操作
摘要: 表格列小箭头下拉下来的GridFilter 筛选操作grid.getFilterPlugin().clearFilters(); grid.getFilterPlugin().getFilter('dataindex').setValue("value"); //string filter grid
阅读全文
posted @ 2020-06-23 10:12 wakaka_wka
阅读(779)
评论(0)
推荐(0)
编辑
2020年4月16日
Centos 硬件信息获取
摘要: 使用 YUM 命令安装 pip。 $ sudo yum install python-pip python-devel 执行下面的 pip 命令安装 python-hwinfo。 $ sudo pip install python-hwinfo 执行下面的命令,检查本地机器现有的硬件。输出很清楚和整
阅读全文
posted @ 2020-04-16 02:03 wakaka_wka
阅读(296)
评论(0)
推荐(0)
编辑
集成 VirtIO 驱动的 windows 系统下载
摘要: http://kxz.pw/Windows/ISO/ISO-Jetso/ http://down.80vps.com/VirtIO/
阅读全文
posted @ 2020-04-16 00:45 wakaka_wka
阅读(2124)
评论(0)
推荐(0)
编辑
2020年4月2日
FilterHeader plugin overview
摘要: FilterHeader plugin allows use the following operators: String: =(equals), +(starts with), -(ends with), *(contains), !(doesn't contain) Date: >, <, >
阅读全文
posted @ 2020-04-02 23:05 wakaka_wka
阅读(176)
评论(0)
推荐(0)
编辑
2020年3月25日
Sql 获取满足给定汇总值的前N条记录
摘要: 1 declare @ivt table(Qty int,Code nvarchar(10)) 2 insert into @ivt(Qty,Code) 3 select 7,'a' union 4 select 3,'b' union 5 select 4,'c' 6 select * from
阅读全文
posted @ 2020-03-25 02:41 wakaka_wka
阅读(272)
评论(0)
推荐(0)
编辑
2020年3月19日
JS 数组去重
摘要: function unique (arr) { return Array.from(new Set(arr)) } var arr = [1,1,'true','true',true,true,15,15,false,false, undefined,undefined, null,null, Na
阅读全文
posted @ 2020-03-19 23:55 wakaka_wka
阅读(115)
评论(0)
推荐(0)
编辑
2020年3月18日
JS 将字符串复制到剪贴板
摘要: const el = document.createElement('textarea'); el.value = str; el.setAttribute('readonly', ''); el.style.position = 'absolute'; el.style.left = '-9999
阅读全文
posted @ 2020-03-18 03:55 wakaka_wka
阅读(1891)
评论(0)
推荐(0)
编辑
上一页
1
···
6
7
8
9
10
11
12
13
下一页