使用html、css和DW模板,如何使菜单中当前页面链接的字体颜色与其他页面链接的颜色不同?我不懂JavaScript等。
function changecolor(colorhere){
var x=document.getElementById("text");
x.style="color:"+colorhere;
}
<p id="text">
Some and so on text here
</p><br>
<button onclick='changecolor("red")'>Red</button>
<button onclick='changecolor("blue")'>Blue</button>
<button onclick='changecolor("yellow")'>Yellow</button>
使用javascript更改颜色!