Get all input fields inside div (without JS library)

前端 未结 6 628
予麋鹿
予麋鹿 2020-12-29 05:49

What\'s the easiest way to get all input fields inside a div without using a javascript library like jQuery? Similar to this jQuery snippet:

var inputs = $(\         


        
6条回答
  •  半阙折子戏
    2020-12-29 06:21

    querySelector and querySelectorAll will fetch the details of what you're expecting easily.

    var divElem = document.getElementById("myDiv");
    var inputElements = divElem.querySelectorAll("input, select, checkbox, textarea");
    

    It will give all the input, select, textarea elements in array format.

提交回复
热议问题