Need to get TAG name by element name using Jquery
This question already has an answer here:
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
上一篇: 按名称访问表单输入字段