Home >Web Front-end >JS Tutorial >jquery gets tagName and then makes a judgment_jquery
If you want to get the tagName and then make a judgment, it will be more convenient to use the following code directly:
$(element).is('input')
If you want to get the tag To use it elsewhere, you can use the following code:
$(element)[0].tagName
or:
$(element).get(0).tagName