<script type="text/javascript">
document.write("URL(document.URL) :");
document.write(document.URL);
document.write("ドメイン名(document.domain) :");
document.write(document.domain);
document.write("文字コード(document.charset) :");
document.write(document.charset);
document.write("document.defaultCharset :");
document.write(document.defaultCharset);
document.write("document.domain :");
document.write(document.domain);
document.write("移動元のURI情報(document.referrer) :");
document.write(document.referrer);
document.write("ページタイトル(document.title) :");
document.write(document.title);
document.write("URLのハッシュ(#)以降の文字列(location.hash) :");
document.write(location.hash);
document.write("URLの(?)以降の問い合わせ文字列(location.search) :");
document.write(location.search);
<script type="text/javascript">
|