c# toolstrip 下的toolstripbutton怎么获取? 10
我现在toolstrip例如有20个toolstripbutton,如果我点击第一个,则第一个按钮的背景色设为黑色,字体颜色为白色。其他的button全部背景色为透明,字...
我现在toolstrip例如有20个toolstripbutton,如果我点击第一个,则第一个按钮的背景色设为黑色,字体颜色为白色。其他的button全部背景色为透明,字体为黑色。
同样我点击第二个按钮,那么第二个按钮背景色为黑色,字体为白色,其他按钮背景色为透明,字体为黑色。以此类推。。。。。。
这样的功能如何实现? 展开
同样我点击第二个按钮,那么第二个按钮背景色为黑色,字体为白色,其他按钮背景色为透明,字体为黑色。以此类推。。。。。。
这样的功能如何实现? 展开
1个回答
展开全部
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="https://cdn.bootcss.com/jquery/1.9.0/jquery.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div>
<div id="btnlist">
<input type="button" id="btn1" value="btn1"/>
<input type="button" id="btn2" value="btn2"/>
<input type="button" id="btn3" value="btn3"/>
<input type="button" id="btn4" value="btn4"/>
</div>
<script>
$(document).ready(
function ()
{
$("#btnlist input").click(
function ()
{
$(this).parent().children("input").css("color", "red");
$(this).css("color","white")
}
);
}
);
</script>
</div>
</form>
</body>
</html>
追问
这是web啊,我是winform的
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询