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

未リンクのリンク部分の文字列色を指定するプロパティです。


オブジェクト1 .linkColor

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


(例)

<SCRIPT type="text/javascript"> <!-- var w1; function btnclick() { w1 = window.open("document_linkcolor_test.html", "", "height=300,width=400"); w1.moveTo(200,300); } //--> </SCRIPT>

document_linkcolor_test.html
<html> <head> <script type="text/javascript"> <!-- function view_linkcolor() { if (window.document.linkColor == "#808080") { window.document.linkColor = "#40c040"; } else { window.document.linkColor = "#808080" } } //--> </script> </head> <body> <form name="form1"> <input type="button" name="view_button" value="未リンク文字色変更" onclick="view_linkcolor()"><br> <a href="document_linkcolor_x.html">未リンク文字色</a><br> <br> ※Firefoxで実行の場合、3回目以降の色指定が無効となります。(Ver.2.0.0.14にて試行) </form> </body> </html>