我是靠谱客的博主 矮小火车,最近开发中收集的这篇文章主要介绍点击按钮效果(button)1.去掉边框效果2.设置简单的for循环按钮可变不同颜色(未实现再次点击取消效果),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
1.去掉边框效果
border:none;
<html lang="en">
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<style>
.btn{border: none;}
</style>
</head>
<body>
<button class="btn">helllo</button>
</body>
</html>
效果:
前
后
2.设置简单的for循环按钮可变不同颜色(未实现再次点击取消效果)
<html lang="en">
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<style>
.btn{border: none;background-color: #d49797;}
</style>
</head>
<body>
<button class="btn">helllo1</button>
<button class="btn">helllo2</button>
<button class="btn">helllo3</button>
<script>
btns=document.querySelectorAll(".btn");
for(let index=0;index<btns.length;index++){
const btn=btns[index];
btn.onclick=()=>{
btn.style.backgroundColor="red";
}
}
</script>
</body>
</html>
初始效果:
点击后:
最后
以上就是矮小火车为你收集整理的点击按钮效果(button)1.去掉边框效果2.设置简单的for循环按钮可变不同颜色(未实现再次点击取消效果)的全部内容,希望文章能够帮你解决点击按钮效果(button)1.去掉边框效果2.设置简单的for循环按钮可变不同颜色(未实现再次点击取消效果)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复