JavaScript
有一个非常重要的功能,就是事件驱动。当页面完全加载后,用户通过鼠标或键盘触发页面中绑定事件的元素即可触发。jQuery 为开发者更有效率的编写事件行为,
封装了大量有益的事件方法供我们使用。一、事件绑定jQuery 通过.bind()方法来为元素绑定这些事件。 可以传递三个参数...
分类:
Web程序 时间:
2014-06-29 14:44:11
阅读次数:
329
同时适合IE、firefox、谷歌浏览器下适用,经过筛选代码如下//禁用右键、文本选择功能、复制按键$(document).bind(“contextmenu”,function(){return
false;});$(document).bind(“selectstart”,function(){...
分类:
Web程序 时间:
2014-06-29 14:38:07
阅读次数:
251
This article shows my process of installing and configuring bind9 DNS server on a linux server. I didn't touch every aspects of bind9, but following the process, a DNS server is configured with A/AAAA...
分类:
系统相关 时间:
2014-06-05 08:36:26
阅读次数:
450
Unrecognized Windows Sockets error: 0:
JVM_Bind【转帖】今天很是奇怪,在运行服务器端的时候,经常遇到这个异常:java.net.SocketException: Unrecognized
Windows Sockets error: 0: JVM_Bin...
启动tomcat的时候出现异常 严重: StandardServer.await:
create[8005]: java.net.BindException: Address already in use: JVM_Bind at
java.net.PlainSocketImpl...
分类:
其他好文 时间:
2014-05-26 18:18:35
阅读次数:
183
转自:http://blog.163.com/wumingli456@126/blog/static/2889641420138213514298/最近在用socket实现服务端向客户端主动推送消息函数名
描述socket_accept() 接受一个Socket连接socket_bind() 把so...
分类:
Web程序 时间:
2014-05-26 16:48:30
阅读次数:
444
Jquery中绑定事件有三种方法:以click事件为例
(1)target.click(function(){}); (2)target.bind("click",function(){});
(3)target.live("click",function(){});第一种方法很好理解,其实就和普通...
分类:
Web程序 时间:
2014-05-25 21:59:52
阅读次数:
242
errormessage:Errorinitializingendpointjava.net.SocketException:UnrecognizedWindowsSocketserror:0:JVM_Bindatjava.net.PlainSocketImpl.socketBind(NativeMethod)atjava.net.PlainSocketImpl.bind(PlainSocketImpl.java:365)atjava.net.ServerSocket.bind(ServerSocket.j..
分类:
编程语言 时间:
2014-05-25 04:52:21
阅读次数:
547
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMap...
分类:
编程语言 时间:
2014-05-24 23:47:55
阅读次数:
408
/**
* Created by W.J.Chang on 2014/5/23.
*/
// 判读是否是数组的方法
console.log(Array.isArray(new Array));
console.log(Array.isArray([]));
var arr = [1,2,3];
// 遍历方法
arr.forEach(function (v){
console.log...
分类:
Web程序 时间:
2014-05-24 18:01:08
阅读次数:
305