Home >Web Front-end >JS Tutorial >The for(in) statement under javascript obtains the [scrollbar] scroll bar style content of all styles_form special effects

The for(in) statement under javascript obtains the [scrollbar] scroll bar style content of all styles_form special effects

WBOY
WBOYOriginal
2016-05-16 19:05:581227browse

events=[];for(o in O=obj.currentStyle)events.push(o '=' O[o])
Enter the code content here


[Ctrl A select all Note: If you need to introduce external Js, you need to refresh to execute
]
<script> events=[''];for(o in O=obj.currentStyle)if(/^scrollbar/.test(o))events.push(o+'='+O[o]) obj.innerHTML='<ol>'+events.sort().join('<li>')+'' </script>
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