Javascript & DHTML 实例编程(教程)(三)初级实例篇1—上传文件控件实例

时间:2021-05-28

效果DEMO:
http://www.never-online.net/tutorial/js/upload/
Javascript & DHTML 实例编程(教程)(三),初级实例篇—上传文件控件实例
上章基本上把要交代的基本知识都说了一些,今天终于开始写代码了:D
首先来做一个实例,批量上传的UI控件。以后一般做的示例也是以UI控件为主的。都是封装成Object或者用Function封装成"Class"类。

也许对于单单看前几章的朋友来说这个例子过于深奥了,但是不用担心,一步步来解释应该很快理解的,关键是理解怎么做,而不是怎么写。

如果还有不懂的朋友,可以留言给我。
首先看一个成品截图预览:


一、接下来我们先说思路,首先定义一个upload"类",

一)、这个类的公共访问信息应该有:
1、构造函数中要传递一些必要的参数,比如,在哪个容器构造upload的信息。
2、必须有一个add()方法,用于添加一个upload
3、必须有一个remove()方法,用于删除一个upload

二)、这个类中应该有一些必要的信息,是生成实例本身所具有的信息,(upload对象的一些信息)。
1、得到一共多少个upload信息,
2、一个容器对象,这个对象也是从构造函数中传递。

整个图可以简单的表示为



二、我想我们该想想应该用到哪些知识,哪些是熟悉的,哪些是未知的。

一)、正如我们上面预览图所见到的,需要三个或以上的新控件。(添加,删除,还有一个file控件,也或者还有其它的...但至少眼睛见到的就这么多了),既然是新的信息,就会可能用到document.createElement,要添加进一个容器里就可能用到object.appendChild(obj)或者obj.insertBefore()方法。删除也就是obj.parentNode.removeChild(obj)。这些上一章都已经说过了。

二)、既然是控件,肯定得用function或者是一个对象(object)封装起来,对这部分知识,第一章已经简单的说明了

三)、如何组织呢?在上面的思路中也已经有了文字和图示

接下来就动手写:
一)、构造函数,以及基本的代码(伪代码)


<script>
functionupload(target
)
{
this._cnt=0;
this.target=document.getElementById(target);
};

upload.prototype.add=function(){
/*
*生成一个file
*生成一个添加
*生成一个删除
*计数器+1
*/
};

upload.prototype.remove=function(){
/*
*删除一个file
*删除一个添加
*删除一个删除
*/
};
</script>

二、写出add方法的实现

<script>
upload.prototype.add=function(){
/*
*生成一个file
*/
varself=this;varcnt=this._cnt;
varcFile=document.createElement("input");
cFile.type="file";cFile.name="upload";
cFile.id="upload_file_"+cnt;
/*
*生成一个添加
*/
varcAdd=document.createElement("span");
cAdd.innerHTML="添加";
cAdd.onclick=function(){
self.add();
};
/*
*生成一个删除
*/
varcRemove=document.createElement("span");
cRemove.innerHTML="删除";
cRemove.onclick=function(){
self.remove(cnt);
};

cAdd.id="upload_add_"+cnt;
cRemove.id="upload_remove_"+cnt;


this.target.appendChild(cFile);
this.target.appendChild(cAdd);
this.target.appendChild(cRemove);


this._cnt++;

returnthis;//返回
};
</script>

三、写出remove方法的实现

<script>
upload.prototype.remove=function(n){
/*
*删除一个file
*/
vara=document.getElementById("upload_file_"+n);
a.parentNode.removeChild(a);
/*
*删除一个添加
*/
vara=document.getElementById("upload_add_"+n);
a.parentNode.removeChild(a);
/*
*删除一个删除
*/
vara=document.getElementById("upload_remove_"+n);
a.parentNode.removeChild(a);

returnthis;
}
</script>

上面remove方法过于重复,可考虑重新把remove再简化,从而使我们的代码更简短而且易于维护呢?在这里,我们把这个通用功能放到一个函数里,也就是多加一个函数:

<script>
upload.prototype._removeNode=function(id){
vara=document.getElementById(id);
a.parentNode.removeChild(a);
};

upload.prototype.remove=function(n){
/*
*删除一个file
*/
this._removeNode("upload_file_"+n);
/*
*删除一个添加
*/
this._removeNode("upload_add_"+n);
/*
*删除一个删除
*/
this._removeNode("upload_remove_"+n);

returnthis;
}
</script>

四、将代码组合一下,基本上可以算是完成了:D

<script>
functionupload(target
)
{
this._cnt=0;
this.target=document.getElementById(target);
};

upload.prototype.add=function(){
/*
*生成一个file
*/
varself=this;varcnt=this._cnt;
varcFile=document.createElement("input");
cFile.type="file";cFile.name="upload";
cFile.id="upload_file_"+cnt;
/*
*生成一个添加
*/
varcAdd=document.createElement("span");
cAdd.innerHTML="添加";
cAdd.onclick=function(){
self.add();
};
/*
*生成一个删除
*/
varcRemove=document.createElement("span");
cRemove.innerHTML="删除";
cRemove.onclick=function(){
self.remove(cnt);
};

cAdd.id="upload_add_"+cnt;
cRemove.id="upload_remove_"+cnt;


this.target.appendChild(cFile);
this.target.appendChild(cAdd);
this.target.appendChild(cRemove);


this._cnt++;

returnthis;//返回
};

upload.prototype._removeNode=function(id){
vara=document.getElementById(id);
a.parentNode.removeChild(a);
};

upload.prototype.remove=function(n){
/*
*删除一个file
*/
this._removeNode("upload_file_"+n);
/*
*删除一个添加
*/
this._removeNode("upload_add_"+n);
/*
*删除一个删除
*/
this._removeNode("upload_remove_"+n);

returnthis;
}
</script>

五、OK,让我们运行一下这个控件:


<html>
<head>
<script>
//这里是上面我们写的控件代码,这里由于篇幅,我就不再贴了
</script>
</head>
<body>
<divid="uploadContainer"></div>
<script>
varo=newupload("uploadConainer");
o.add();
</script>
</body>
</html>

六、嗯,已经看到效果了吧,但似乎不太理想,全部添加的都粘在一起了,有必要要美化一下。从何处入手?这里可以有很多选择:
1、加一个换行符<br>
2、每添加一个upload就再加一个容器div
...等

我们这里添加一个容器,如果以后还要加什么东西,会更好加一些,修改add:

<script>
upload.prototype.add=function(){
/*
*生成一个file
*/
varself=this;varcnt=this._cnt;
varcWrap=document.createElement("div");
cWrap.id="upload_wrap_"+cnt;
varcFile=document.createElement("input");
cFile.type="file";cFile.name="upload";
cFile.id="upload_file_"+cnt;
/*
*生成一个添加
*/
varcAdd=document.createElement("span");
cAdd.innerHTML="添加";
cAdd.onclick=function(){
self.add();
};
/*
*生成一个删除
*/
varcRemove=document.createElement("span");
cRemove.innerHTML="删除";
cRemove.onclick=function(){
self.remove(cnt);
};

cAdd.id="upload_add_"+cnt;
cRemove.id="upload_remove_"+cnt;


cWrap.appendChild(cFile);
cWrap.appendChild(cAdd);
cWrap.appendChild(cRemove);
this.target.appendChild(cWrap);


this._cnt++;

returnthis;//返回
};
</script>

七、加上CSS美化一下,最后的代码如下:

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<title>uploadcontrol-http://www.never-online.net</title>
<styletype="text/css"media="all"title="Default">
*{font-family:Arial;}
body{font-size:10pt;}
h1{}
#footer{font-size:9pt;margin:20px;}
span{margin:3px;text-decoration:underline;cursor:default;}
</style>
<scripttype="text/javascript">
//<![CDATA[

functionupload(target){
this._cnt=0;
this.target=document.getElementById(target);
};

upload.prototype.add=function(){

varself=this;varcnt=this._cnt;
varcWrap=document.createElement("div");
cWrap.id="upload_wrap_"+cnt;
varcFile=document.createElement("input");
cFile.type="file";cFile.name="upload";
cFile.id="upload_file_"+cnt;

varcAdd=document.createElement("span");
cAdd.innerHTML="添加";
cAdd.onclick=function(){
self.add();
};

varcRemove=document.createElement("span");
cRemove.innerHTML="删除";
cRemove.onclick=function(){
self.remove(cnt);
};

cAdd.id="upload_add_"+cnt;
cRemove.id="upload_remove_"+cnt;

cWrap.appendChild(cFile);
cWrap.appendChild(cAdd);
cWrap.appendChild(cRemove);
this.target.appendChild(cWrap);
this._cnt++;

returnthis;
};

upload.prototype._removeNode=function(id){
vara=document.getElementById(id);
a.parentNode.removeChild(a);
};

upload.prototype.remove=function(n){
this._removeNode("upload_file_"+n);
this._removeNode("upload_add_"+n);
this._removeNode("upload_remove_"+n);
returnthis;
};

onload=function(){
varo=newupload("container");
o.add();
};
//]]>
</script>
</head>
<bodyid="www.never-online.net">
<h1>batchuploadcontrolwithjavascript</h1>
<divid="container"></div>
<divid="footer">tutorialofDHTMLandjavascriptprogramming,PowerBynever-online.net</div>
</body>
</html>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章