2个回答
2013-10-17
展开全部
我的做法是:假如你所说的那段文字放在一个DIV里,DIV的class属性就是定义DIV容器里的元素的样式的,id就是给javascript获取到该元素的。获取到之后通过改class属性,就相当于改了div里的样式<html><head><style type="text/css">.style1{font-size:12px; font-weight:blod; color:red}.style2{font-size:14px; font-weight:blod; color:blue}</style><script language="javascript" type="text/javascript"> function change(){document.getElementById("myword").className= "style2";}</script></head><body><div><a href="#" class="style1" id="myword" onclick="change()">我是DIV里的文字</a></div></body></html>
2013-10-17
展开全部
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>改变按钮背景</title>
<script type="text/javascript">
//移入时背景变绿
function change(over){
over.style.backgroundColor = 'green';
}
//移开时背景变红
function show(out){
out.style.backgroundColor = 'red';
}
</script>
</head>
<body >
<input id="button" type="button" name="Submit" value="移过来看看" onmouseover="change(this)" onmouseout="show(this)" />
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>改变按钮背景</title>
<script type="text/javascript">
//移入时背景变绿
function change(over){
over.style.backgroundColor = 'green';
}
//移开时背景变红
function show(out){
out.style.backgroundColor = 'red';
}
</script>
</head>
<body >
<input id="button" type="button" name="Submit" value="移过来看看" onmouseover="change(this)" onmouseout="show(this)" />
</body>
</html>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询