可能重复:
How do I embed an “a:hover{…}” rule into a style attribute in the middle of a document?
How to write a:hover in inline CSS?
我想动态更改元素的悬停颜色,但不使用外部CSS样式表,只能内联。这是代码(使用php生成元素)
echo '
<div class="container" style="color:#'.$color.'">
'.$contents.'
</div>';
当用户将鼠标悬停在此容器元素上时,颜色样式将更改为$color
的值(此时没有悬停)。
任何帮助都将不胜感激。
答案 0 :(得分:5)
如果javascript值得注意,这将对您有所帮助
<TD onMouseOver="this.bgColor='#00CC00'" onMouseOut="this.bgColor='#009900'" bgColor=#009900>
<A HREF="http://www.mysite.com">Click Here</A></TD>
或
Javascript更改超链接文本颜色Onmouseover
<style type="text/css">
a {
font-weight:bold;
font-family:verdana;
text-decoration:none;
}
</style>
<script type="text/javascript" language="javascript">
function changeColor(idObj,colorObj)
{
document.getElementById(idObj.id).style.color = colorObj;
}
</script>
<a href="#" style="color: #000000" onmouseover="this.style.color='#FF0000'" onmouseout="this.style.color='#000000'">
Link 1</a>
<br />
<br />
<a href="#" style="color: #999999" onmouseover="this.style.color='#008000'" onmouseout="this.style.color='#999999'">
Link 2</a>
<br />
<br />
<a href="#" style="color: #FF0000" onmouseover="this.style.color='blue'" onmouseout="this.style.color='#FF0000'">
Link 3</a>
<br />
<br />
<a id="lnk1" href="#" style="color: #008000" onmouseover="changeColor(this,'#FF0000');"
onmouseout="changeColor(this,'#008000');">Link Color change using javascript function</a>
答案 1 :(得分:2)
您不能,因为您无法内联设置伪选择器。理想情况下,您应该在外部css中设计单独的类,它们代表您需要的各种悬停状态,并在PHP中将这些类分配给您的内容。