Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
223 views
in Technique[技术] by (71.8m points)

How to create a multidimensional array with values from dynamically created form fields, using jquery?

I have a form where I dynamicly add three fields at time.

Those fields each have diffrent class names.

I want to create a multidimensional array that stores the values of those fields.

The array needs to look like this:

var working_days = {
        0: {
            'workday': data,
            'from': data,
            'till': data
        },
        1: {
            'workday': data,
            'from': data,
            'till': data
        },
        2: {
            'workday': data,
            'from': data,
            'till': data
        },
        //etc.
    };

Prehaps using array push?

This is the code I have so far:

$('body').on('click','.createItem', function() {
    var working_days = {}

    console.log(values);
    $('input.startTime').each(function() {
        var startTime = $(this).val();
    });

    $('input.endTime').each(function() {
        var endTime = $(this).val();
    });

    $('select.day').each(function() {
        var day = $(this).val();
    });

});

What are possible ways to do this?

question from:https://stackoverflow.com/questions/65836475/how-to-create-a-multidimensional-array-with-values-from-dynamically-created-form

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The jQuery helper function .serializeArray() could be a good starting point for you. The resulting array of objects then needs to be transformed into your required format, using .reduce(). Here is a little fiddle to demonstrate a possible solution:

const names={startTime:"from",endTime:"till"};
function addTimes(tblsel){
 $(tblsel).append($("#timegrp").html()) 
}
for (let n=6;n--;) addTimes("#times table");
$("#times").on("click",".rmv",function(){this.closest("tr").remove()});
$("#add").click(ev=>addTimes("#times table"));
$("#chk").click(ev=>{
  const res=$("#times").serializeArray().reduce((a,e)=>{
    if (e.name=="day") a.push({workday:e.value});
    else names[e.name] && (a[a.length-1][names[e.name]]=e.value);
    return a;
  },[]);
  console.log(res);
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button id="add">add workday</button>
<button id="chk">check times</button>
<form id="times">
<table></table>
</form>

<template id="timegrp">
<tr><td><select name="day"><option>Monday</option>
<option>Tuesday</option>
<option>Wednesday</option>
<option>Thursday</option>
<option>Friday</option>
<option>Saturday</option>
<option>Sunday</option></select></td>
<td><input type="time" name="startTime" value="08:30"></td>
<td><input type="time" name="endTime" value="17:00"></td>
<td class="rmv" title="remove">&#x2718;<td></tr>
</template>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...