DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> Javascript & DHTML 實例編程(教程)(三)初級實例篇1—上傳文件控件實例
Javascript & DHTML 實例編程(教程)(三)初級實例篇1—上傳文件控件實例
編輯:JavaScript基礎知識     
效果DEMO:
http://www.never-online.net/tutorial/js/upload/
Javascript & DHTML 實例編程(教程)(三),初級實例篇—上傳文件控件實例
上章基本上把要交代的基本知識都說了一些,今天終於開始寫代碼了:D
首先來做一個實例,批量上傳的UI控件。以後一般做的示例也是以UI控件為主的。都是封裝成Object或者用Function封裝成"Class"類。

也許對於單單看前幾章的朋友來說這個例子過於深奧了,但是不用擔心,一步步來解釋應該很快理解的,關鍵是理解怎麼做,而不是怎麼寫。

如果還有不懂的朋友,可以留言給我。
首先看一個成品截圖預覽:
http://www.never-online.net/tutorial/js/upload/upload_preview.png

一、接下來我們先說思路,首先定義一個upload"類",

一)、這個類的公共訪問信息應該有:
1、構造函數中要傳遞一些必要的參數,比如,在哪個容器構造upload的信息。
2、必須有一個add()方法,用於添加一個upload
3、必須有一個remove()方法,用於刪除一個upload

二)、這個類中應該有一些必要的信息,是生成實例本身所具有的信息,(upload對象的一些信息)。
1、得到一共多少個upload信息,
2、一個容器對象,這個對象也是從構造函數中傳遞。

整個圖可以簡單的表示為

http://www.never-online.net/tutorial/js/upload/upload_UML.png

二、我想我們該想想應該用到哪些知識,哪些是熟悉的,哪些是未知的。

一)、正如我們上面預覽圖所見到的,需要三個或以上的新控件。(添加,刪除,還有一個file控件,也或者還有其它的...但至少眼睛見到的就這麼多了),既然是新的信息,就會可能用到document.createElement,要添加進一個容器裡就可能用到object.appendChild(obj)或者obj.insertBefore()方法。刪除也就是obj.parentNode.removeChild(obj)。這些上一章都已經說過了。

二)、既然是控件,肯定得用function或者是一個對象(object)封裝起來,對這部分知識,第一章已經簡單的說明了

三)、如何組織呢?在上面的思路中也已經有了文字和圖示

接下來就動手寫:
一)、構造函數,以及基本的代碼(偽代碼)


<script>
function upload(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
   */
  var self = this; var cnt = this._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;

  /* 把所有生成的信息添加到容器中 */
  this.target.appendChild(cFile);
  this.target.appendChild(cAdd);
  this.target.appendChild(cRemove);

  /* 計數器+1 */
  this._cnt++;

  return this; //返回
};
</script>

三、寫出remove方法的實現

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

  return this;
}
</script>

上面remove方法過於重復,可考慮重新把remove再簡化,從而使我們的代碼更簡短而且易於維護呢?在這裡,我們把這個通用功能放到一個函數裡,也就是多加一個函數:

<script>
upload.prototype._removeNode = function (id) {
  var a=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);

  return this;
}
</script>

四、將代碼組合一下,基本上可以算是完成了:D

<script>
function upload(target/*容器*/
                )
{
  this._cnt = 0; /*計數器*/
  this.target = document.getElementById(target);
};

upload.prototype.add = function () {
  /*
   *生成一個 file
   */
  var self = this; var cnt = this._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;

  /* 把所有生成的信息添加到容器中 */
  this.target.appendChild(cFile);
  this.target.appendChild(cAdd);
  this.target.appendChild(cRemove);

  /* 計數器+1 */
  this._cnt++;

  return this; //返回
};

upload.prototype._removeNode = function (id) {
  var a=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);

  return this;
}
</script>

五、OK,讓我們運行一下這個控件:


<html>
<head>
<script>
//這裡是上面我們寫的控件代碼,這裡由於篇幅,我就不再貼了
</script>
</head>
<body>
<div id="uploadContainer"></div>
<script>
var o=new upload("uploadConainer");
o.add();
</script>
</body>
</html>

六、嗯,已經看到效果了吧,但似乎不太理想,全部添加的都粘在一起了,有必要要美化一下。從何處入手?這裡可以有很多選擇:
1、加一個換行符<br>
2、每添加一個upload就再加一個容器div
...等

我們這裡添加一個容器,如果以後還要加什麼東西,會更好加一些,修改add:

<script>
upload.prototype.add = function () {
  /*
   *生成一個 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;
  /*
   *生成一個 添加
   */
  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);

  /* 計數器+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>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved