|
Informationクッキー一覧ブラウズ中の画面上の、クッキー一覧を作成し別ウィンドウに表示します。 //cookie list
var aryCok=document.cookie.split(";");
var html="";
html+="<TABLE border='1'>";
for(var numIx=0;aryCok.length>numIx;numIx++){
var aryKey=aryCok[numIx].split("=");
html+="<TR>";
html+="<TD>"+numIx+"</TD>";
html+="<TD>"+aryKey[0]+"</TD>";
html+="<TD>"+aryKey[1]+"</TD>";
html+="</TR>";
}
html+="</TABLE>";
var win = window.open();
win.document.open();
win.document.write(html);
win.document.close();
|
Sponsor |