document.vlinkColor

書式

document.vlinkColor

説明

リンク済みの文字の色を参照/設定します。

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
</head>
<body vlink="orange">
<script type="text/javascript"><!--
document.write(document.vlinkColor);
// --></script>
</body>
</html>