今日、単純なメソッド toggleClass() を使用してインターレース カラー変更を実装します。コードは次のとおりです: コードをコピーします コードは次のとおりです: 隔行换色 <br> body,table,td, {<br> font-family:Arial, Helvetica, sans-serif;<br> font-size:12px;<br> }<br> .h背景:#f3f3f3 ;<br> color:#000;<br> }<br> .c {<br> background:#ebebeb;<br> color:#000;<br> }<br> 脚本之家 脚本之家 脚本之家 脚本之家 脚本之家 脚本之家 脚本之家 脚本之家 脚本之家 脚本之家 脚本之家 脚本之家 脚本之家Script Home ;The first more complicated method: Copy the code The code is as follows: $(function() { $("#table tr").hover(function() { $(this).addClass("h") ; > { if ($ (this) .attr ("checked") { $ (this) .closest ("tr"). Addclass ("c"); } } else { $(this).closest("tr").removeClass("c"); } }) })The second simpler method: toggleClass() Toggles setting or removing one or more classes of selected elements. This method checks the specified class in each element. Adds the class if it does not exist, or removes it if it is set. This is called a toggle effect. However, by using the "switch" parameter, you can specify that only classes be removed or only added. Copy code The code is as follows: $(function(){ $(" #table tr").hover(function(){ $(this).toggleClass("h"); > var d = $(this); d.closest('tr').toggleClass("c",d.attr("checked")) ; }) })