わびさびサンプルソース

WindowsやHTML5などのプログラムのサンプルコードやフリーソフトを提供します。

ドメイン名の取得

ドメイン名は、documentのdomainプロパティに格納されています。

<!doctype html>
<html>
<head>
<meta charset="UTF-8"> 
</head>
<body>
<script type="text/javascript" language="javascript">
<!--
document.write( "domain名 = " + document.domain );
// -->
</script>
</body>
</html>

実行結果

domain名 = www.wabiapp.com






わびさびサンプルソース

WindowsやHTML5などのプログラムのサンプルコードやフリーソフトを提供します。