ホームページ > 記事 > ウェブフロントエンド > jQueryのタグテキスト内容とHTML content_jqueryを取得するメソッド
この記事の例では、jQuery がタグ テキスト コンテンツと HTML コンテンツを取得する方法を説明します。皆さんの参考に共有してください。具体的な分析は次のとおりです。
jQuery は、text メソッドと html メソッドを通じて、指定されたタグのテキスト コンテンツまたは html コンテンツを取得できます
<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("#btn1").click(function(){ alert("Text: " + $("#test").text()); }); $("#btn2").click(function(){ alert("HTML: " + $("#test").html()); }); }); </script> </head> <body> <p id="test">This is some <b>bold</b> text in a paragraph.</p> <button id="btn1">Show Text</button> <button id="btn2">Show HTML</button> </body> </html>
この記事が皆さんの jQuery プログラミングに役立つことを願っています。