jQuery排他思想
Posted 天道酬勤
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery排他思想相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>jQuery的排他思想</title> <script src="jquery-1.11.3.min.js"></script> </head> <body> <button>快速</button> <button>快速</button> <button>快速</button> <button>快速</button> <button>快速</button> <button>快速</button> <button>快速</button> <script> $(\'button\').click(function() { $(this).css(\'color\',\'red\'); $(this).siblings().css(\'color\',\'\'); // $(this).css(\'color\',\'red\').siblings().css(\'color\',\'\'); }) </script> </body> </html>
以上是关于jQuery排他思想的主要内容,如果未能解决你的问题,请参考以下文章
通过案例 详解点击事件获取li的index,并切换对应的图片,排他思想,闭包,bind,let,jquery简单应用,简单的tab栏制作-初学者html+css+js练习demo