1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 点击按钮效果(button)

点击按钮效果(button)

时间:2020-07-04 18:57:12

相关推荐

点击按钮效果(button)

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>

初始效果:

点击后:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。