行走的Coder

俱怀逸兴壮思飞,欲上青天览明月。

导航

01 2016 档案

Ubuntu下使用Git
摘要:1. 首先到 https://github.com/这里创建一个帐号。 2. 创建Repository,到个人首页以后,点击 New repository,如下图: 3. 添加该代码库名称,描述,其他如下图: 4. 点击 Create repository,完成创建,会显示如下图: ... 阅读全文

posted @ 2016-01-23 19:39 行走的coder 阅读(278) 评论(0) 推荐(0)

Java web项目实现多附件上传
摘要:jsp代码: 添加附件每个附件大小不能超过50M js代码:function addComponent() { var flag = document.getElementById("numsize").value; if(flag>9){ alert("您添加的... 阅读全文

posted @ 2016-01-22 10:07 行走的coder 阅读(1744) 评论(0) 推荐(0)

Java web项目实现上传图片及时预览
摘要:实现代码://图片自动预览 $(function() { $("#picture").change( function() { var $file = $(this); var fileObj = $file[0]; var windowURL = window.URL || win... 阅读全文

posted @ 2016-01-22 09:56 行走的coder 阅读(11053) 评论(0) 推荐(0)