jquery hideメソッドを使って指定した要素を隠すサンプル
環境
Google Chrome 105.0.5195.127
Windows 10 Home 64bit
jquery 3.6.1
構文
$(“指定要素").hide(“指定時間");
hideメソッドを使って指定要素を隠します。
使用例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script> $(document).ready(function(){ $('#btnchk').on('click', function () { // 指定要素を2秒かけて隠す $('#cft').hide(2000); }); }); </script> </head> <body> <a id="cft" >testdata</a> <p> <button id="btnchk" >検証</button></p> </body> </html>
実行結果
「検証」ボタンを押すと、指定要素「id="cft"」を2秒かけて隠します。