Need to get TAG name by element name using Jquery

This question already has an answer here:

  • How can I select an element by name with jQuery? 15 answers

  • use querySelector() to retrieve the element and tagName to retrieve the tag name

    document.querySelector('[name="sample"]').tagName.toLowerCase();
    

    Codepen demo


    你应该可以选择标签名称,然后使用名称属性如下: $('input[name="sample"]')

    $('input[name="sample"]').val('Lorem Ipsum');
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    
    <input type="text" name="sample" />

    你可以使用.tagName

    console.log(document.querySelector('[name=sample]').tagName);
    <input type="text" name="sample" />
    链接地址: http://www.djcxy.com/p/36268.html

    上一篇: 按名称访问表单输入字段

    下一篇: 需要使用Jquery通过元素名称获取TAG名称