jQuery3で、フォーカスセルに色を付けます。
※addClass/removeClassで行います。
【手順】
1.『jQuery3.1.0のダウンロード方法』の手順で、jQuery3.1.0をダウンロードしておきます。
2.『index.html』というファイルを作成。
3.『index.html』を以下の様に入力。
<!doctype html> <html> <head> <script src="jquery-3.1.0.min.js"></script> <script> $(function(){ $("td").hover(function() { $(this).addClass("focus-cell"); }, function() { $(this).removeClass("focus-cell"); }); }); </script> <style> .focus-cell { background-color: pink; } </style> </head> <body> <table border="1"> <thead> <tr> <th>番号</th> <th>名前</th> <th>備考</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>あああああ</td> <td>AAAAA</td> </tr> <tr> <td>2</td> <td>いいいいい</td> <td>BBBBB</td> </tr> <tr> <td>3</td> <td>ううううう</td> <td>AAAAA</td> </tr> </tbody> </table> </body> </html>
4.ダウンロードした『jquery-3.1.0.min.js』と『index.html』を同一ディレクトリに配置します。
5.『index.html』をブラウザで開きます。
6.以下の様に表示されれば成功です。
以上です。
0 件のコメント:
コメントを投稿
注: コメントを投稿できるのは、このブログのメンバーだけです。