轉自:http://www.cnblogs.com/damonlan/archive/2011/08/03/2126046.html
昨天,我們公司的網絡小組決定為公司做一個內部的網站,主要是為員工比如發布公告啊、填寫相應信息、投訴、問題等等需求。我那同事給了我以下需求:
1.點擊一個按鈕 就增加一個文本框。
2.把新建的文本框的名字命名為 questions[1] ,questions[2],questions[3]....這種形式。
3.可以刪除,每次刪除最后一個。
4.變色功能。就是當鼠標移入到一個文本框的時候,當前背景色自動的變成灰色。
其他 以后擴展再說。
先不說,上圖為好,下面就是最終實現的效果。
整個過程不算太難理解,就是昨天晚上在整那個左邊系號的時候 剛開始老是不對。后來整了一個全局變量,在進行判斷一下就OK了。
代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><title></title><script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script><script type="text/javascript">var count = 1;//用來判斷是刪除 還是增加按鈕 以便count值進行計算function checkCount(boolOK, coun) {if (boolOK == true) {return count++;}else {count--;}}//添加一個input標簽 同時也對它的ID和Name進行賦值。function AddInput() {// checkCount(2, true); countAA = checkCount(true, count);// alert(countAA);//count++;var question = document.getElementById("question");//創建spanvar span = document.createElement("span");span.id = "lbl" + count;span.innerText = "您的第" + count + "個問題: ";question.appendChild(span);//創建inputvar input = document.createElement("input");input.type = "text";input.id = "questions[" + count + "]";input.name = "questions[" + count + "].name";question.appendChild(input);//創建一個空格var br = document.createElement("br");question.appendChild(br);}//每次刪除最后一個input標簽function DecInput() {var count2 = 0var inputs = document.getElementsByTagName("input");for (var i = 0; i < inputs.length; i++) {var input = inputs[i];if (input.type == "text") {count2++;}}var question = document.getElementById("question");var whichInput = document.getElementById("questions[" + count2 + "]");var whichSpan = document.getElementById("lbl" + count2 + "");question.removeChild(whichInput);question.removeChild(whichSpan);var brs = document.getElementsByTagName("br");question.removeChild(brs[count2 - 1]);checkCount(false, count2);}function TestClick() {var q2 = document.getElementById("questions[4]");if (q2) {alert("OK");}else {alert("No...");}}function initEvent() {var inputs = document.getElementsByTagName("input");for (var i = 0; i < inputs.length; i++) {var input = inputs[i];if (input.type == "text") {input.onmouseout = myOnmouseout;input.onfocus = myOnfocus;}}}function myOnmouseout() {this.style.backgroundColor = "white";}function myOnfocus() {this.style.backgroundColor = "gray";}</script> </head> <body onmousemove="initEvent()"><fieldset style="width: 500px; margin-left: 200px;"><legend><h6>親愛的用戶,請輸入您的問題</h6></legend><div id="question" style="border: 1px solid red;"><span id="span1">您的第1個問題:</span><input id="Text1" type="text" /><br /></div><div style="margin-top: 100px;"><input id="btnAddInput" type="button" value="新增一個Input" onclick="AddInput()" /><input id="btnDecre" type="button" value="刪除一個Input" onclick="DecInput()" /><input id="Button1" type="button" value="測試" onclick="TestClick()" /></div></fieldset> </body> </html>
?