我知道用CSS可以做到:
p:hover {
xxx:yyy;
}
我希望这样做,但在HTML页面中没有链接CSS,如下所示:
<p style="xxx">xxxxxxxx</p>
但是使用悬停选项。
答案 0 :(得分:2)
您可以直接在html页面中插入CSS而不链接它:
<head>
<style>
p:hover {
xxx: yyy;
}
</style>
</head>
<body>
<p>xxxxxxxx</p>
</body>
答案 1 :(得分:0)
您可以在html页面中使用内部css,如下所示..
<style>
p:hover{
//coding...
}
</style>
答案 2 :(得分:0)
尝试使用JavaScript:
<p onmouseover="change(this)" >xxxxx</p>
<script type="text/javascript" >
function change (element) {
var style = element.style;
// Do something with style...
// Example: style.color = "red";
}
</script>