|
Informationスタイル一覧ブラウズ中の画面上で、使用中のスタイル一覧を作成し別ウィンドウに表示します。 //styleSheets list
var objTgt=document.styleSheets;
var html="";
html+="<TABLE border='1'>";
for (var numIx=0;objTgt.length>numIx;numIx++){
html+="<TR>";
html+="<TD>"+numIx+"</TD>";
if (objTgt[numIx].href != ""){
html+="<TD><a href='"+objTgt[numIx].href+"' target='_blank'>"+objTgt[numIx].href+"</a></TD>";
}else{
html+="<TD><xmp>"+objTgt[numIx].cssText+"</xmp></TD>";
}
html+="</TR>";
}
html+="</TABLE>";
var win = window.open();
win.document.open();
win.document.write(html);
win.document.close();
※このスクリプトは、古いパターンファイルのウィルスチェックに引っかかる事があるようです。 (スクリプト内に"document.styleSheets .href .cssText"の3つの文字列があれば、JS/Exploit-LocalCSSウィルス判定ってどうよ。。おかげで標準として入れられない。。) |
Sponsor |