网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

jquery如何实现点击按钮切换背景色

时间:2024-10-12 17:55:55

1、在编辑器内新建一个stduy.html,用来学习今天的内容

jquery如何实现点击按钮切换背景色

3、在style标签内给div加上样式

jquery如何实现点击按钮切换背景色

5、在浏览器里打开stduy.html,发现点击按钮可以切换背景色

jquery如何实现点击按钮切换背景色jquery如何实现点击按钮切换背景色

6、最后贴一下代码:<!DOCT孢亨槐溲YPE html><html> <head> <meta charset="utf-8"媪青怍牙> <title>jquery如何实现点击按钮切换背景色</title> <script src="jquery.min.js"></script> </head> <style> div{ width: 200px; height: 200px; } </style> <body> <div></div> <button>点击切换颜色</button> </body> <script> var color =['red','green','black','white'] var index = 0 $("button").click(function(){ if(index>color.length-1)index = 0 $("div").css('background',color[index]) index++ }) </script></html>

© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com