帮忙用html语言编一个按钮,效果是点击一下变成红色,在点击一下变回
帮忙用html语言编一个按钮,效果是点击一下变成红色,在点击一下变回原来的颜色。我有一段是只能点击变成红色,,但不能变回原来的颜色。谁给我补充下<buttononmous...
帮忙用html语言编一个按钮,效果是点击一下变成红色,在点击一下变回原来的颜色。我有一段是只能点击变成红色,,但不能变回原来的颜色。谁给我补充下
<button onmouseover="this.style.backgroundColor='red';"
onmouseout="this.style.backgroundColor='black';" >确定</button> 展开
<button onmouseover="this.style.backgroundColor='red';"
onmouseout="this.style.backgroundColor='black';" >确定</button> 展开
4个回答
展开全部
<button onclick="this.style.backgroundColor=='red'?this.style.backgroundColor='':this.style.backgroundColor='red'" >确定</button>
追问
谢谢,你俩的答案都ok,我只能按顺序采纳了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
展开全部
<html><head><SCRIPT language=JavaScript type=text/javascript> <!--
function cSetColor(str)
{
var myLinkx = document.getElementById(str);
var tTextColor;
var rColor ="";
tTextColor = myLinkx.style.cssText;
if( tTextColor != "" )
{
rColor = tTextColor.split("color: ")[1].split(";")[0]; //分解数据
}
if( rColor == "blue" )
{
myLinkx.style="color:red";
}
else
{
myLinkx.style="color:blue";
}
}
--></SCRIPT> </head><body>
<a id=0 href="http://www.baidu.com" target="_blank" onclick="cSetColor(this.id); " >测试,请点击我。</a><p>
</body></html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<button onclick="this.style.backgroundColor=(this.style.backgroundColor=='red')?'':'red';">确定</button>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要js才可以的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询