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

Categories

How do we stor selected row in array in JavaScript?

See Question&Answers more detail:os

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

1 Answer

You shoud be more specific in what kind of object youre using in your html (DOM) code.

exampl: if you're using a SELECT 'resources' in a form

var fl = form.resources.length -1;

//Pull selected resources and add them to list
for (fl; fl > -1; fl--) {
   if (form.resources.options[fl].selected) {
    theText  = form.resources.options[fl].text;
        theValue = form.resources.options[fl].value);

        //your code to store in an aray goes here
        //...
   }

}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...