Last Update 2009/03/29
TOP - JavaScript - Document - alinkColor
アクセス中(リンクボタンが押されている)リンク部分の文字列色を指定するプロパティです。
オブジェクト1 .alinkColor
オブジェクト1
Documentオブジェクト(通常は、window.document等)
(例)
<SCRIPT type="text/javascript">
<!--
var w1;
function btnclick()
{
w1 = window.open("document_alinkcolor_test.html", "", "height=150,width=400");
w1.moveTo(200,300);
}
//-->
</SCRIPT>
document_vlinkcolor_test.html
<html>
<head>
<script type="text/javascript">
<!--
function view_vlinkcolor()
{
if (window.document.vlinkColor == "#808080")
{
window.document.vlinkColor = "#40c040";
}
else
{
window.document.vlinkColor = "#808080"
}
}
//-->
</script>
</head>
<body>
<form name="form1">
<input type="button" name="view_button"
value="アクセス中リンク文字色変更" onclick="view_alinkcolor()"><br>
<a href="document_alinkcolor_test.html">アクセス中リンク文字色</a> ← 押している間色が設定色に変化<br>
<br>
※一度実行すると色はリセットされます
</form>
</body>
</html>