摘要:
参考:http://kyfxbl.iteye.com/blog/1910891 http://showerlee.blog.51cto.com/2047005/1266712一、环境 httpd:Apache2.4.10 openssl:1.0.1 OS:CentOS5.7 四、在httpd中配置单... 阅读全文
摘要:
1、查看源版本 openssl version -a 如果Linux系统默认安装了openssl,版本就是:OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008 2、下载openssl-1.0.1g.tar.gz https://www.openssl.org/source/ ... 阅读全文
摘要:
Passwd 进入修改密码cd 进入个人的主目录cd /home 进入‘/home’目录cd .. 返回上一级目录cd ../.. 返回上两级目录cd - 返回上次所在的目录ls 查看目录中的文件ls –F 查看目录中的文件ls –l 查看... 阅读全文
摘要:
一、安装Apache 若要安装apache服务器软件,需要安装以下几个依赖软件 apr-1.4.6.tar.gz 下载地址:http://apr.apache.org/ apr-util-1.4.1.tar.gz 下载地址:http://apr.apache.org/ pcre-8.20.tar.g 阅读全文
摘要:
HTML代码: {$vo.name} JQuery代码:function edit(msg,id){ var text = $(msg).text(); $(msg).html("= 0 || name == ""){ alert("相册名称不能为空且不能含有空格!"); $("inpu... 阅读全文
摘要:
1.js方法:function replaceErrorImg(obj){ obj.src="images/common/error.bmp";}2.jquery绑定$('img').error(function() { $(this).attr("src", "images/common... 阅读全文
摘要:
我们在平常使用Jquery异步提交表单,一般是在submit()中,使用$.ajax进行。比如: $(function(){ $('#myForm').submit(function(){ $.ajax({ url:"/WebT... 阅读全文
摘要:
原帖链接:http://bbs.blueidea.com/thread-2666987-1-1.html1、因为Opera,FF3,IE8均支持display:talbe;这些特性了,因此改进的办法是:利用定位来显示垂直局中的图片固定高宽的容器中,图片垂直局中。绿色容器是span,目的是使自己的左上... 阅读全文
摘要:
*{ margin: 0px; padding:0px;}body{ margin:0 auto; width:100%; font: 13px "宋体",Verdana,Arial,Helvetica,sans-serif;}a{ text-decoration: none;//不显示下划线}a... 阅读全文
摘要:
.image{box-shadow: 0 0 3px #000;} 阅读全文
摘要:
较好的处理办法,对js的url中的中文参数值使用两次encodeURI(),即encodeURI(encodeURI("url的中文参数值"))JS代码:var name="我是中文";$.get( "edit.php?&name="+encodeURI(name), function(result... 阅读全文