Home >Web Front-end >JS Tutorial >The abbreviation of js getElementsByTagName_javascript skills

The abbreviation of js getElementsByTagName_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:24:291025browse
Copy code The code is as follows:

//CLASS@Mr.Think*****getElementsByTagName
function tag(name,elem){
if(!document.getElementsByTagName) return false;
return (elem || document).getElementsByTagName(name);
}

The usage will not be described in detail. If it is used to obtain a specified tag set in the entire document, it can be obtained directly using tag("xx").
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn