Home > Web Front-end > JS Tutorial > body text

The abbreviation of js getElementsByTagName_javascript skills

WBOY
Release: 2016-05-16 18:24:29
Original
1007 people have browsed it
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").
Related labels:
js
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template