|
Informationスクリプト一覧ブラウズ中の画面上で、使用中のスクリプト一覧を作成し別ウィンドウに表示します。 //scripts list
var objTgt=document.scripts;
var html="";
html+="<TABLE border='1'>";
for (var numIx=0;objTgt.length>numIx;numIx++){
html+="<TR>";
html+="<TD>"+numIx+"</TD>";
if (objTgt[numIx].src != ""){
html+="<TD><a href='"+objTgt[numIx].src+"' target='_blank'>"+objTgt[numIx].src+"</a></TD>";
}else{
html+="<TD><xmp>"+objTgt[numIx].text+"</xmp></TD>";
}
html+="</TR>";
}
html+="</TABLE>";
var win = window.open();
win.document.open();
win.document.write(html);
win.document.close();
|
Sponsor |