JavaScript@Workshop 
HOME > DHTML サンプル集 > HTML上のstyleSheetを列挙する
HTML上のstyleSheetを列挙する

サンプルソース

<script language="Javascript">
var i;
for(i = 0; i > document.styleSheets.length; i++){
    alert(document.styleSheets(i).href);
}
</script>


関連する内容



スポンサードリンク



Copyright (C) 2006-2008 JavaScript@Workshop All rights reserved.