JQuery 提供了两种方式来阻止事件冒泡。方式一:event.stopPropagation(); $("#div1").mousedown(function(event){ event.stopPropagation(); });方式二:return false; $("#div1")...
分类:
Web程序 时间:
2015-09-22 14:13:58
阅读次数:
110
itheima11_ssh org.springframework.web.context.ContextLoaderListener contextConfigLocation classpath:spring/applicati...
分类:
Web程序 时间:
2015-09-22 14:13:19
阅读次数:
131
class Base{ int x = 1; static int y = 2; } class Subclass extends Base{ int x = 4; int y = 5; } public class Test02{ ...
分类:
编程语言 时间:
2015-09-22 14:15:04
阅读次数:
141
mysql>grant 权限1,权限2,…权限n on数据库名称.表名称 to 用户名@用户地址 identified by ‘连接口令’;GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'localhost' \IDENTIFIED BY 'NEUTR...
分类:
数据库 时间:
2015-09-22 14:13:09
阅读次数:
261
Python的django框架,做了一个前端页面,其中有一向要求提交表单,暂且总结一下流程,有不对的地方请指正:1、在HTML页面写表单: {% csrf_token %} Submit 其中enctype="multipart/form-data"是必须的,来确保匿名上载文件的正...
分类:
其他好文 时间:
2015-09-22 14:13:36
阅读次数:
213
转自:http://www.cnblogs.com/hxwj/p/4563351.html微信支付用到的文件1.首先支持非arc2.设置URL types3.AppDelegate-(BOOL)application:(UIApplication*)applicationdidFinishLaunc...
分类:
微信 时间:
2015-09-22 14:13:48
阅读次数:
541
天气阴,没精打采的,影响着人的心情起码现在的我还有着着矫情病人往往在狂欢之余会留下空虚和茫然何况是自嗨后留下的后遗症我想我需要静静周围太烦躁我需要静静下来听听我的心声让我的心是沉的是静的周围太烦躁。。。。
分类:
其他好文 时间:
2015-09-22 14:13:54
阅读次数:
141
最近,spirng官方改版,spring framework最新release的zip包已经在官网上找不着相应链接了,都改成maven构建下载的方式了,让初学者无从下载。 这里给大家提供springframework最新release的zip包的下载地址: ?1...
分类:
编程语言 时间:
2015-09-22 13:11:53
阅读次数:
160
Xcode 6.x 上开发的APP 可能会出现 : "Unable to create description in descriptionForLayoutAttribute_layoutItem_coefficient. Something is nil" //因为偷懒使用了reset to suggested constraints, autolayou...
分类:
移动开发 时间:
2015-09-22 13:11:10
阅读次数:
238
背景介绍??? 最近在看《密码学与网络安全》相关的书籍,这篇文章主要详细介绍一下著名的网络安全协议SSL。 在开始SSl介绍之前,先给大家介绍几个密码学的概念和相关的知识。 1、密码学的相关概...
分类:
其他好文 时间:
2015-09-22 13:11:46
阅读次数:
262
今天小编将具体介绍PowerPoint有哪些密码以及如何使用Office密码破解软件破解PowerPoint密码。 用户可以利用PowerPoint在投影仪或者计算机上进行演示,PowerPoint的演示文稿后缀名为:ppt、pptx,所以一般又称...
分类:
其他好文 时间:
2015-09-22 13:10:42
阅读次数:
253
<Xamarin Platform 试用版下载地址> 在本文中,我们将使用Xamarin创建第一个Android应用程序。 安装完Xamarin之后,在Visual Studio中点击File-> New Project,你应该可以在可用模板中看见一个Android选项。 继续...
分类:
移动开发 时间:
2015-09-22 13:09:17
阅读次数:
164
Java NIO 核心部分(简单来说): ????Channels (通道) ????Buffers????(缓冲区) ????Selectors????(选择器) ----------------------------------------------------- Channel实现: ??...
分类:
编程语言 时间:
2015-09-22 13:09:45
阅读次数:
148
文章参考:http://eric.themoritzfamily.com/python-encodings-and-unicode.html http://desert3.iteye.com/blog/757508 https://github.com/misfo/Shell-Turtlestein/issues/6 http://www.sublimetext.com/forum...
分类:
系统相关 时间:
2015-09-22 13:08:35
阅读次数:
194
升级Xcode7&iOS9后,出现NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -980) 在info.plist里面添加如下内容即可: <key>NSAppTransportSecurity</key>
<dict>
????<key>NSAllows...
分类:
其他好文 时间:
2015-09-22 13:10:39
阅读次数:
499
1、类名:类名和对象应该是名词或名词短语,如Customer、WikiPage、Account等等。避免使用Manager、Processor这样的类名。 2、方法名:方法名应当是动词或者动词短语,如postPayment、save、delete等等属性访问器、...
分类:
其他好文 时间:
2015-09-22 13:08:56
阅读次数:
203
HibernateTemplate类中的方法是spring封装了hibernate中的方法,在使用完了以后会自动释放session。 ?? ?而如果使用了HibernateDaoSupport的getSession方法,就需要配套的使用 releaseSession(Session session...
分类:
Web程序 时间:
2015-09-22 13:10:32
阅读次数:
146