我正在研究類似的表單fiddle
它創建了我所需要的動態表單字段。
現在我需要當用戶填寫這些字段上的on-change事件的數據時,我想檢索字段來總結所有字段的值。
或
每次用戶填寫或更改這些字段的值時,都需要從此字段值進一步計算。獲取在點擊事件中創建的輸入字段的值
var count = 0;
window.createinput = function(){
field_area = document.getElementById('fields')
var li = document.createElement("li");
var input = document.createElement("input");
input.id = 'field'+count;
input.name = 'field'+count;
input.size = "30";
input.type = "text"; //Type of field - can be any valid input type like text,file,checkbox etc.
li.appendChild(input);
var input2 = document.createElement("input");
input2.id = 'field2'+count;
input2.name = 'field2'+count;
input2.size = "10";
input2.type = "text"; //Type of field - can be any valid input type like text,file,checkbox etc.
li.appendChild(input2);
var input3 = document.createElement("input");
input3.id = 'field3'+count;
input3.name = 'field3'+count;
input3.size = "20";
input3.type = "text"; //Type of field - can be any valid input type like text,file,checkbox etc.
li.appendChild(input3);
field_area.appendChild(li);
//create the removal link
var removalLink = document.createElement('a');
removalLink.className = "remove";
removalLink.onclick = function(){
this.parentNode.parentNode.removeChild(this.parentNode)
}
var removalText = document.createTextNode('Remove Field Group');
removalLink.appendChild(removalText);
li.appendChild(removalLink);
count++
}
使用更改/輸入事件來完成您的任務..! –
您允許使用JQuery,@Nothing嗎? – Arvind
我使用wordpress任何東西都可以使用我可以用dat jquery/js – Nothing