如果我们布局的是后是fixed并且想要高度为100%的时候,我们一般会这样设置: 但是这样并不会出现滚动条,正确的做法应该设置top和bottom为0: ...
分类:
Web程序 时间:
2017-08-31 12:43:33
阅读次数:
318
indexOf作用:用于检索一个字符串在另一个字符串中的位置。 indexOf的几个重载方法如下: int indexOf(String str) 意思为在字符串中检索str第一次出现的位置,如果找不到返回-1。 eg: String str = "I can because i think i c ...
分类:
其他好文 时间:
2017-08-31 12:43:25
阅读次数:
175
package nsqdimport ( "io" "net" "github.com/nsqio/nsq/internal/protocol")type tcpServer struct { ctx *context}func (p *tcpServer) Handle(clientConn ne... ...
分类:
其他好文 时间:
2017-08-31 12:43:13
阅读次数:
119
Java基础类型,Java String基础操作,String,StringBuffer,StringBuilder ...
分类:
编程语言 时间:
2017-08-31 12:43:06
阅读次数:
147
相同点:两者本质上都是DOM元素。 不同点:JQ对象是在原生DOM对象上进行了一次封装,使开发人员使用起来更简洁、高效。 两者之间用法也完全不同,很说初学者经常混淆。 其实区分两者并不难, 1、语法不一样,JQ对象都是以$开头的,API也不一样(具体请查询JQ手册)。 比如:$('#a').html ...
分类:
其他好文 时间:
2017-08-31 12:43:00
阅读次数:
104
package nsqdtype dummyBackendQueue struct { readChan chan []byte}func newDummyBackendQueue() BackendQueue { return &dummyBackendQueue{readChan: make(c... ...
分类:
其他好文 时间:
2017-08-31 12:42:48
阅读次数:
115
1.分层 1.1 链路层:包括操作系统中的设备驱动程序和计算机中对应的网络接口卡,处理与电缆的物理接口细节(以太网协议) 1.2网络层:处理分组在网络中的活动(IP协议,ICMP协议,IGMP协议) 1.3运输层:两台主机上的应用程序提供端到端的通信(TCP协议(为两台主机提供高可靠性的数据通信), ...
分类:
其他好文 时间:
2017-08-31 12:42:39
阅读次数:
133
题目: Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -. Example:Given a = 1 and b = 2, return 3. 代码: 使用移位来 ...
分类:
其他好文 时间:
2017-08-31 12:42:28
阅读次数:
108
EL表达式 1、EL基本内容 1)语法结构 2)[]与.运算符 3)变量 因为我们并没有指定哪一个范围的username,所以它会依序从Page、Request、Session、Application范围查找。 3) 2、EL隐含对象 1)与范围有关的隐含对象 2)与输入有关的隐含对象 3.其他隐含 ...
分类:
其他好文 时间:
2017-08-31 12:42:21
阅读次数:
106
diskQueue是backendQueue接口的一个实现。backendQueue的作用是在实现在内存go channel缓冲区满的情况下对消息的处理的对象。 除了diskQueue外还有dummyBackendQueue实现了backendQueue接口。对于临时(#ephemeral结尾)To... ...
分类:
其他好文 时间:
2017-08-31 12:42:10
阅读次数:
265
Thinkphp5 assign 传递 " 时 ,前台收到的是 " 和ThinkPHP3.2不一样,3.2收到的是 ”,传递给js时 ...
分类:
Web程序 时间:
2017-08-31 12:42:01
阅读次数:
207
<?php header("Content-type:text/html;charset=utf-8"); $account = $_POST['account']; $password = $_POST['password']; echo ' <form action="Login.php" me ...
分类:
数据库 时间:
2017-08-31 12:41:53
阅读次数:
216
package nsqdimport ( "crypto/tls" "crypto/x509" "encoding/json" "errors" "fmt" "io/ioutil" "math/rand" "net" "os" "path" "runtime" "strings" "sync" "s... ...
分类:
其他好文 时间:
2017-08-31 12:41:31
阅读次数:
192
Query on A Tree 题目描述 Monkey A lives on a tree. He always plays on this tree.One day, monkey A learned about one of the bit-operations, xor. He was kee ...
分类:
其他好文 时间:
2017-08-31 12:41:22
阅读次数:
252
package nsqdimport ( "encoding/binary" "fmt" "io" "net" "time" "github.com/nsqio/go-nsq")// lookupPeer is a low-level type for connecting/reading/writ... ...
分类:
其他好文 时间:
2017-08-31 12:41:01
阅读次数:
167
JAVA_HOME: F:\jdk CATALINA_HOME: F:\tomcat PATH: ;%JAVA_HOME%\bin;%CATALINA_HOME%\bin CLASS_PATH: .;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar;% ...
分类:
其他好文 时间:
2017-08-31 12:40:52
阅读次数:
80
mysql数据库设计,其中,对于数据性能优化,字段类型考虑很重要,搜集了些资料,整理分享出来,这篇为有关mysql整型bigint、int、mediumint、smallint 和 tinyint的语法介绍,如下:1、bigint 从 -2^63 (-9223372036854775808) 到 2 ...
分类:
数据库 时间:
2017-08-31 12:40:39
阅读次数:
190