摘要: 第一:下载swfupload控件,点击下载:第二,解压缩后,在项目中添加这四个文件,如图:然后,在你的js文件中添加这段代码:/*** *定义swfupload配置文件对象**/var swfObj = { // Backend Settings upload_url: "../../Handler/CourseHandler.ashx?action=SaveFile", //upload_url: "upload.aspx", // File Upload Settings file_size_limit: "10240", fil 阅读全文
posted @ 2014-01-08 17:23 Seaurl 阅读(605) 评论(0) 推荐(0) 编辑
摘要: SWFUpload托管在谷歌代码上面,点击下载:https://code.google.com/p/swfupload/ 阅读全文
posted @ 2014-01-08 16:08 Seaurl 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 首先在你的js文件里添加这段代码: /*** 日期时间格式化方法,* 可以格式化年、月、日、时、分、秒、周**/Date.prototype.Format = function (formatStr) { var week = ['日', '一', '二', '三', '四', '五', '六']; return formatStr.replace(/yyyy|YYYY/, this.getFullYear()) .replace(/yy|YY/, (this.getYear() % 阅读全文
posted @ 2014-01-08 15:41 Seaurl 阅读(201) 评论(0) 推荐(0) 编辑
摘要: border-radius: 4px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#569B0E', endColorstr='#095701', GradientType=0);如图:所以border-radius(圆角)和DXImageTransform.Microsoft.gradient(渐变色)只能兼容其中一个,解决方法:border-radius: 4px;background-color: #569B0E;filter: progid:dximagetrans 阅读全文
posted @ 2014-01-08 11:34 Seaurl 阅读(526) 评论(0) 推荐(0) 编辑