Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

javascript - how to extract HTML values when ID values are stored in an array

for (i = 0; i < result.length; i++) {
                var Temp_Name = result[i];
                var Temp_Val = result[i].val();
                console.log("temp name is ", Temp_Name);

               console.log("temp val is ",Temp_Val);
            }

How to get Temp_Val ? Current method is not working.

HTML Code:

<input type = "Text" id={{this.Temp_Name}}>

I want to store the values of result in DB.

result is [Brand,Size,Product] Values have to be entered by user in HTML

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Below should work in DHTML

for (i = 0; i < result.length; i++) {
            var Temp_Name = result[i];
            var Temp_Val = document.getElementById(Temp_Name).value;
            console.log("temp name is ", Temp_Name);

           console.log("temp val is ",Temp_Val);
        }

Please let me know if you have any questions


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...