网页特效 onmouseover 如何改变字体颜色
<table><tronmousemove="...."onmouseout="..."><td>晚上好,挖哈哈</td></tr></table>我要用onmousem...
<table>
<tr onmousemove="...." onmouseout="..." >
<td>晚上好,挖哈哈</td>
</tr>
</table>
我要用onmousemove,onmouseout 动态改变字体颜色,怎么写?知道的朋友帮忙写下。
直接在onmousemove="...." 里面写,不要再在外面增加函数,谢谢 展开
<tr onmousemove="...." onmouseout="..." >
<td>晚上好,挖哈哈</td>
</tr>
</table>
我要用onmousemove,onmouseout 动态改变字体颜色,怎么写?知道的朋友帮忙写下。
直接在onmousemove="...." 里面写,不要再在外面增加函数,谢谢 展开
4个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript" type="text/javascript">
function getCSS(){
var csst = document.getElementById('testCss').style;
csst.color='red';
}
function lostCSS(){
var csst = document.getElementById('testCss').style;
csst.color='';
}
</script>
</head>
<body>
<table>
<tr onmousemove="getCSS();" onmouseout="lostCSS();" >
<td id="testCss">晚上好,挖哈哈</td>
</tr>
</body>
</html>
补充回答:<tr onmousemove="javascript:this.style.color='red';" onmouseout="javascript:this.style.color='';" >
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript" type="text/javascript">
function getCSS(){
var csst = document.getElementById('testCss').style;
csst.color='red';
}
function lostCSS(){
var csst = document.getElementById('testCss').style;
csst.color='';
}
</script>
</head>
<body>
<table>
<tr onmousemove="getCSS();" onmouseout="lostCSS();" >
<td id="testCss">晚上好,挖哈哈</td>
</tr>
</body>
</html>
补充回答:<tr onmousemove="javascript:this.style.color='red';" onmouseout="javascript:this.style.color='';" >
字体视界
2024-09-30 广告
2024-09-30 广告
字体视界隶属于上海义启信息科技有限公司,是一家以“中文字体、西文字体、文字素材”等字体内容设计、生产,传播和版权交易为核心,多业务线矩阵协同发展的互联网科技文创企业。欢迎了解字体视界网站,字体视界网站提供正版字体商业授权服务、提供品牌字体(...
点击进入详情页
本回答由字体视界提供
展开全部
<html>
<body>
<table border='1'>
<tr onmousemove="javascript:this.style.color='blue'" onmouseout="javascript:this.style.color=''" >
<td>晚上好,挖哈哈</td><td>晚上好,挖哈哈</td>
</tr>
</table>
</body>
</html>
<body>
<table border='1'>
<tr onmousemove="javascript:this.style.color='blue'" onmouseout="javascript:this.style.color=''" >
<td>晚上好,挖哈哈</td><td>晚上好,挖哈哈</td>
</tr>
</table>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
onmousemove="javascript:this.style.color=#####"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询