|
http://www.never-online.NET/tutorial/js/upload/
Javascript & DHTML 實(shí)例編程(教程)(三),初級(jí)實(shí)例篇―上傳文件控件實(shí)例
上章基本上把要交代的基本知識(shí)都說(shuō)了一些,今天終于開(kāi)始寫(xiě)代碼了:D
首先來(lái)做一個(gè)實(shí)例,批量上傳的UI控件。以后一般做的示例也是以UI控件為主的。都是封裝成Object或者用Function封裝成"Class"類(lèi)。
也許對(duì)于單單看前幾章的朋友來(lái)說(shuō)這個(gè)例子過(guò)于深?yuàn)W了,但是不用擔(dān)心,一步步來(lái)解釋?xiě)?yīng)該很快理解的,關(guān)鍵是理解怎么做,而不是怎么寫(xiě)。
如果還有不懂的朋友,可以留言給我。
首先看一個(gè)成品截圖預(yù)覽:
一、接下來(lái)我們先說(shuō)思路,首先定義一個(gè)upload"類(lèi)",
一)、這個(gè)類(lèi)的公共訪問(wèn)信息應(yīng)該有:
1、構(gòu)造函數(shù)中要傳遞一些必要的參數(shù),比如,在哪個(gè)容器構(gòu)造upload的信息。
2、必須有一個(gè)add()方法,用于添加一個(gè)upload
3、必須有一個(gè)remove()方法,用于刪除一個(gè)upload
二)、這個(gè)類(lèi)中應(yīng)該有一些必要的信息,是生成實(shí)例本身所具有的信息,(upload對(duì)象的一些信息)。
1、得到一共多少個(gè)upload信息,
2、一個(gè)容器對(duì)象,這個(gè)對(duì)象也是從構(gòu)造函數(shù)中傳遞。
整個(gè)圖可以簡(jiǎn)單的表示為
二、我想我們?cè)撓胂霊?yīng)該用到哪些知識(shí),哪些是熟悉的,哪些是未知的。
一)、正如我們上面預(yù)覽圖所見(jiàn)到的,需要三個(gè)或以上的新控件。(添加,刪除,還有一個(gè)file控件,也或者還有其它的...但至少眼睛見(jiàn)到的就這么多了),既然是新的信息,就會(huì)可能用到document.createElement,要添加進(jìn)一個(gè)容器里就可能用到object.appendChild(obj)或者obj.insertBefore()方法。刪除也就是obj.parentNode.removeChild(obj)。這些上一章都已經(jīng)說(shuō)過(guò)了。
二)、既然是控件,肯定得用function或者是一個(gè)對(duì)象(object)封裝起來(lái),對(duì)這部分知識(shí),第一章已經(jīng)簡(jiǎn)單的說(shuō)明了
三)、如何組織呢?在上面的思路中也已經(jīng)有了文字和圖示
接下來(lái)就動(dòng)手寫(xiě):
一)、構(gòu)造函數(shù),以及基本的代碼(偽代碼)
<script>
function upload(target/*容器*/
)
{
this._cnt = 0; /*計(jì)數(shù)器*/
this.target = document.getElementById(target);
};
upload.prototype.add = function () {
/*
*生成一個(gè) file
*生成一個(gè) 添加
*生成一個(gè) 刪除
*計(jì)數(shù)器+1
*/
};
upload.prototype.remove = function () {
/*
*刪除一個(gè) file
*刪除一個(gè) 添加
*刪除一個(gè) 刪除
*/
};
</script>
二、寫(xiě)出add方法的實(shí)現(xiàn)
<script>
upload.prototype.add = function () {
/*
*生成一個(gè) file
*/
var self = this; var cnt = this._cnt;
var cFile = document.createElement("input");
cFile.type="file"; cFile.name="upload";
cFile.id = "upload_file_" +cnt;
/*
*生成一個(gè) 添加
*/
var cAdd = document.createElement("span");
cAdd.innerHTML="添加";
cAdd.onclick = function () {
self.add();
};
/*
*生成一個(gè) 刪除
*/
var cRemove = 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);
/* 計(jì)數(shù)器+1 */
this._cnt++;
return this; //返回
};
</script>
三、寫(xiě)出remove方法的實(shí)現(xiàn)
<script>
upload.prototype.remove = function (n) {
/*
*刪除一個(gè) file
*/
var a = document.getElementById("upload_file_" +n);
a.parentNode.removeChild(a);
/*
*刪除一個(gè) 添加
*/
var a = document.getElementById("upload_add_" +n);
a.parentNode.removeChild(a);
/*
*刪除一個(gè) 刪除
*/
var a = document.getElementById("upload_remove_" +n);
a.parentNode.removeChild(a);
return this;
}
</script>
上面remove方法過(guò)于重復(fù),可考慮重新把remove再簡(jiǎn)化,從而使我們的代碼更簡(jiǎn)短而且易于維護(hù)呢?在這里,我們把這個(gè)通用功能放到一個(gè)函數(shù)里,也就是多加一個(gè)函數(shù):
<script>
upload.prototype._removeNode = function (id) {
var a=document.getElementById(id);
a.parentNode.removeChild(a);
};
upload.prototype.remove = function (n) {
/*
*刪除一個(gè) file
*/
this._removeNode("upload_file_" +n);
/*
*刪除一個(gè) 添加
*/
this._removeNode("upload_add_" +n);
/*
*刪除一個(gè) 刪除
*/
this._removeNode("upload_remove_" +n);
return this;
}
</script>
四、將代碼組合一下,基本上可以算是完成了:D
<script>
function upload(target/*容器*/
)
{
this._cnt = 0; /*計(jì)數(shù)器*/
this.target = document.getElementById(target);
};
upload.prototype.add = function () {
/*
*生成一個(gè) file
*/
var self = this; var cnt = this._cnt;
var cFile = document.createElement("input");
cFile.type="file"; cFile.name="upload";
cFile.id = "upload_file_" +cnt;
/*
*生成一個(gè) 添加
*/
var cAdd = document.createElement("span");
cAdd.innerHTML="添加";
cAdd.onclick = function () {
self.add();
};
/*
*生成一個(gè) 刪除
*/
var cRemove = 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);
/* 計(jì)數(shù)器+1 */
this._cnt++;
return this; //返回
};
upload.prototype._removeNode = function (id) {
var a=document.getElementById(id);
a.parentNode.removeChild(a);
};
upload.prototype.remove = function (n) {
/*
*刪除一個(gè) file
*/
this._removeNode("upload_file_" +n);
/*
*刪除一個(gè) 添加
*/
this._removeNode("upload_add_" +n);
/*
*刪除一個(gè) 刪除
*/
this._removeNode("upload_remove_" +n);
return this;
}
</script>
五、OK,讓我們運(yùn)行一下這個(gè)控件:
<html>
<head>
<script>
//這里是上面我們寫(xiě)的控件代碼,這里由于篇幅,我就不再貼了
</script>
</head>
<body>
<div id="uploadContainer"></div>
<script>
var o=new upload("uploadConainer");
o.add();
</script>
</body>
</html>
六、嗯,已經(jīng)看到效果了吧,但似乎不太理想,全部添加的都粘在一起了,有必要要美化一下。從何處入手?這里可以有很多選擇:
1、加一個(gè)換行符<br>
2、每添加一個(gè)upload就再加一個(gè)容器div
...等
我們這里添加一個(gè)容器,如果以后還要加什么東西,會(huì)更好加一些,修改add:
<script>
upload.prototype.add = function () {
/*
*生成一個(gè) file
*/
var self = this; var cnt = this._cnt;
var cWrap = document.createElement("div");
cWrap.id = "upload_wrap_" +cnt;
var cFile = document.createElement("input");
cFile.type="file"; cFile.name="upload";
cFile.id = "upload_file_" +cnt;
/*
*生成一個(gè) 添加
*/
var cAdd = document.createElement("span");
cAdd.innerHTML="添加";
cAdd.onclick = function () {
self.add();
};
/*
*生成一個(gè) 刪除
*/
var cRemove = 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);
/* 計(jì)數(shù)器+1 */
this._cnt++;
return this; //返回
};
</script>
七、加上CSS美化一下,最后的代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> upload control - http://www.never-online.NET </title>
<style type="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>
<script type="text/Javascript">
//<![CDATA[
function upload(target) {
this._cnt = 0;
this.target = document.getElementById(target);
};
upload.prototype.add = function () {
var self = this; var cnt = this._cnt;
var cWrap = document.createElement("div");
cWrap.id = "upload_wrap_" +cnt;
var cFile = document.createElement("input");
cFile.type="file"; cFile.name="upload";
cFile.id = "upload_file_" +cnt;
var cAdd = document.createElement("span");
cAdd.innerHTML="添加";
cAdd.onclick = function () {
self.add();
};
var cRemove = 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++;
return this;
};
upload.prototype._removeNode = function (id) {
var a=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);
return this;
};
onload = function () {
var o = new upload("container");
o.add();
};
//]]>
</script>
</head>
<body id="www.never-online.NET">
<h1> batch upload control with Javascript </h1>
<div id="container"></div>
<div id="footer">tutorial of DHTML and Javascript programming, Power By never-online.NET</div>
</body>
</html>
JavaScript技術(shù):Javascript &amp; DHTML 實(shí)例編程(教程)(三)初級(jí)實(shí)例篇1―上傳文件控件實(shí)例,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。