
js
高国藩
这个作者很懒,什么都没留下…
展开
-
js prototype call 函数的讲解
prototype 源码 说明 1 Object.prototype.Property = 1; Object.prototype.Method = function () { alert(1); } var obj = new Object(); alert(obj.Property); obj.Metho原创 2015-02-08 13:41:13 · 11918 阅读 · 0 评论 -
FCKeditor html 文本编辑器的配置应用
(1) 下载应用 ① FCKeditor 下载地址 ② 把FCKeditor 2.6.5 解压到项目的 WebRoot 下 ③ 解压fckeditor-java-2.6-bin.zip,把文件夹中的fckeditor-java-core-2.6.jar以及lib中的所有jar包拷贝到你的web程序的lib中,fckeditor-java-demo-2.6.war中的sl原创 2015-02-11 14:17:32 · 12794 阅读 · 0 评论 -
AJAX+H5 上传文件+进度条
1.舍去form表单改为使用新型的formData进行传输 2.页面上的上传文件控件: 3.ajax实现上传: function uploadSaveProjects(obj){ var fileObj = document.getElementById("file").files[0]; // 获取文件对象 var FileController = baseUrl + "p原创 2015-11-09 14:43:49 · 15754 阅读 · 0 评论