Loose-Info.com
Last Update 2009/03/29
TOP - JavaScript - Document - vlinkColor

アクセス済みのリンク部分の文字列色を指定するプロパティです。


オブジェクト1 .vlinkColor

オブジェクト1
Documentオブジェクト(通常は、window.document等)


(例)

<SCRIPT type="text/javascript"> <!-- var w1; function btnclick() { w1 = window.open("document_vlinkcolor_test.html", "", "height=300,width=400"); } //--> </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_vlinkcolor()"><br> <a href="document_vlinkcolor_test.html">アクセス済み文字色</a><br> <br> ※Firefoxで実行の場合、3回目以降の色指定が無効となります。(Ver.2.0.0.14にて試行) </form> </body> </html>