码迷,mamicode.com
首页 >  
搜索关键字:eve    ( 10269个结果
【1】ASP.NET异步(1)
图标说明了异步的基础认识。 1.如果没有Ajax,提交之后整个页会刷新(左图)。右图所示的虚线范围区域加入了ajax技术,提交之后只更新了虚线区域的内容,这样看比较直白。 <form>①<asp:ScriptManager...</asp:ScriptManager> //必须,用于连接Ajax j ...
分类:Web程序   时间:2017-04-30 01:01:36    阅读次数:168
使用gulp压缩js详细步骤笔记
先要安装nodejs,初始化项目配置文件package.json,根据情况输入配置参数 1 test command: 2 git repository: 3 keywords: 4 author: 5 license: (ISC) 6 About to write to E:\temp\20170 ...
分类:Web程序   时间:2017-04-29 23:33:57    阅读次数:469
[USACO08NOV]奶牛混合起来Mixed Up Cows
题目描述 Each of Farmer John's N (4 <= N <= 16) cows has a unique serial number S_i (1 <= S_i <= 25,000). The cows are so proud of it that each one now we ...
分类:其他好文   时间:2017-04-29 23:24:58    阅读次数:207
hdu 5238 Calculator(线段树,中国剩余定理)
Calculator Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 521 Accepted Submission(s): 170 Pro ...
分类:其他好文   时间:2017-04-29 22:12:33    阅读次数:286
二叉树(9)----打印二叉树中第K层的第M个节点,非递归算法
1、二叉树定义: typedef struct BTreeNodeElement_t_ { void *data; } BTreeNodeElement_t; typedef struct BTreeNode_t_ { BTreeNodeElement_t *m_pElemt; struct BTr ...
分类:编程语言   时间:2017-04-29 14:18:56    阅读次数:224
Add Binary
Given two binary strings, return their sum (also a binary string). For example, a = "11" b = "1" Return "100". public class Solution { public String a ...
分类:其他好文   时间:2017-04-29 11:53:48    阅读次数:127
CSS参考手册
定位 Positioning position z-index top right bottom left clip position z-index top right bottom left clip 布局 Layout display float clear visibility overfl ...
分类:Web程序   时间:2017-04-29 11:52:52    阅读次数:454
js(jquery)绑定点击事件
<button type="submit" id="test">test</button> 第一种 $("#test").click(function(event){ /* Act on the event */}); 另外一种 document.getElementById('#foo').add ...
分类:Web程序   时间:2017-04-29 09:41:30    阅读次数:142
Pick apples 第三届acm省赛
Description Once ago, there is a mystery yard which only produces three kinds of apples. The number of each kind is infinite. A girl carrying a big ba ...
分类:移动开发   时间:2017-04-28 23:44:55    阅读次数:323
C#Winform程序如何发布并自动升级(图解)
有不少朋友问到C#Winform程序怎么样配置升级,怎么样打包,怎么样发布的,在这里我解释一下打包和发布 关于打包的大家可以看我的文章C# winform程序怎么打包成安装项目(图解) 其实打包是打包,发布是发布两者是没有任何关系的,只是有些同志会分不清楚。混在一起了。 下在面大家就和我一起来做一个 ...
分类:Windows程序   时间:2017-04-28 23:43:10    阅读次数:303
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!