- 浏览: 509244 次
- 性别:
- 来自: 北京
最新评论
-
纵观全局:
配置之后,连接显示不是私密连接
keytool生成证书与Tomcat SSL配置 -
zhuchao_ko:
可以 伪造
java获得ip地址 -
longhua2003:
代码太乱了
java下载文件 -
tomhat:
ccx410 写道 安装gwt报错,unable to ret ...
GWT CellTable -
ccx410:
安装gwt报错,unable to retrieve osgi ...
GWT CellTable
文章列表
function addCommas(nStr){
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}
如调用document.body必须在<body></body>之后或者之间,否则会报document.body为n ...
<script>
document.onkeydown=function(event){
e = event ? event: (window.event ? window.event : null);
if(e.keyCode==13){
//执行的方法
alert('回车检测到了');
}
}
</script>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Html</title>
<style type="text/css">
.tooltip {
position: relative;
display: inline-block;
cursor ...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Html</title>
<style type="text/css">
.tooltip {
position: relative;
/* background: #eaeaea; */
cu ...
方案一:先通过父元素的子元素找到含自己在内的“兄弟元素”,然后判断剔除自己。
function siblings(elem) {
var a = [];
var b = elem.parentNode.children;
for(var i =0,i<b.length;i++) {
if(b[i] !== elem) a.push(b[i]);
}
return a;
}
方案二:jquery 1.2.2 里的实现方法,先通过父元素的第一个子元素,然后不断往下找下一个紧邻元素,判断剔除自己。
siblings: function(e ...
// 判断浏览器
function getExplorer() {
var explorer = window.navigator.userAgent;
//ie
if (explorer.indexOf("MSIE") >= 0) {
// alert("ie");
}
//firefox
else if (explorer.indexOf("Firefox") >= 0) {
// ...
jQuery获取Select选择的Text和 Value(转)
jQuery获取Select选择的Text和Value:
语法解释:
1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发
2. var checkText=$("#select_id").find("option:selec ...
for(String dataKey : paraMap.keySet()) {
System.out.println(dataKey );
}
for(Map.Entry<String, Object> entry : paraMap.entrySet()) {
System.out.println(entry.getKey()+": "+entry.getValue());
}
Iterator it = paraMap.entrySet().iterator();
whil ...
在workspace下查看日志,寻求错误来源
发现错误为:org.eclipse.core.runtime.CoreException: Cannot connect to VM
经过排查,发现是win7的winsock导致
win7系统winsock损坏,重置
1、键入cmd
2、在命令提示字符键入netsh winsock reset
使用Eclipse对Java代码进行调试,无论是远程JVM还是本地JVM都会进行Socket通讯.发生这样的错误是由于这些软件会修改winsock,还会监听和占用一些端口,Socket通讯不上造成的
<style>
.input_Login {
width: 100px;
height: 15px;
border: 1px solid #C3D9FF;
background: #ffffff;
padding: 2px 0 0 3px;
}
.px {
-moz-border-bottom-colors: none;
-moz-border-image: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colo ...
安装mysql后
配置MySQL
[root@sample ~]#vim /etc/my.cnf ← 编辑MySQL的配置文件
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1 ← 找到这一行,在这一行的下面添加 ...
1、安装 MySQL
首先来进行 MySQL 的安装。打开超级终端,输入:
[root@localhost ~]# yum install mysql mysql-server
安装完毕,让 MySQL 能够随系统自动启动:
[root@localhost ~]# chkconfig --levels 235 mysqld on
[root@localhost ~]# /etc/init.d/mysqld start
设置 MySQL 数据 root 账户的密码:
[root@localhost ~]# mysql_secure_installation
当出现如下提示时候直接按回车:
Ent ...
JQGrid是一个在jquery基础上做的一个表格控件,以ajax的方式和服务器端通信。
JQGrid Demo 是一个在线的演示项目。在这里,可以知道jqgrid可以做什么事情。jQgrid 使用详细说明请查看:http://blog.mn886.net/jqGrid/
下面是转自其他人blog的一个学习资料,与其说是学习资料,说成查询帮助文档更加合适。
jqGrid学习之 ------------- 安装
jqGrid安装很简单,只需把相应的css、js文件加入到页面中即可。 按照官网文档:
/myproject/css/ ui.jqgrid. ...
在linux下怎么安装.bin的文件
$ cd 你希望安装的目录
$ chmod a+x j2sdk-1_4_2-nb-3_5_1-bin-linux.bin
$ ./j2sdk-1_4_2-nb-3_5_1-bin-linux.bin
递归删除项目目录下的.svn
find . -name "*.svn" | xargs rm -rf
很好用
创建多级目录
mkdir的-p选项允许你一次性创建多层次的目录,而不是一次只创建单独的目录。#mkdir -p Project/{a,b,c,d}/src 共创建了9个目录
ln -sf 源目录 软连接目录
#ln -sf axis2-1.4 axis2
#ln -sf apache-tomcat-6 tomcat6
#解压压缩包到 test-pie目录
tar -jxvf billprofile-2010-07-28.tar ...