2013-10-16 19:13 Wednesday  
.detail_tb{border-collapse:collapse;
        border-spacing:0;
        border:1px solid #666;
}
.detail_tb td {
        border-color:#666;
  ...

阅读全文>>

2013-10-11 11:05 Friday  

Nginx上传文件出现一个错误:413 Request Entity Too Large,百度了一下,原来是文件太大了。

原因上传文件超过最大值,修改nginx.conf的值就可以解决了。

client_max_body_size 2M

改为

client_max_body_size 5M;

阅读全文>>

$(document).ready(function()
{
alert($(window).height()); //浏览器窗口可视区域高度
alert($(document).height()); //浏览器窗口文档的高度
alert($(document.body).height());//浏览器窗口文档body的高度
alert($(document.body).ou...

阅读全文>>