1. ホーム
  2. jquery

[解決済み] jQueryでdiv内のspanにテキストを追加する

2022-02-08 05:39:07

質問

<div id="tagscloud">
       <span></span>
</div>

以下のコードのように、スパン内にテキストを追加するにはどうすればよいでしょうか。

<span>**tag cloud**</span>

編集 : 実際にスパンにはidがあります

<div id="tagscloud"> <span id="WebPartCaptionWPQ2"></span> </div>

解決方法は?

使用することができます。

$("#tagscloud span").text("Your text here");

同じコードは、2番目のケースでも機能します。また、使用することもできます。

$("#tagscloud #WebPartCaptionWPQ2").text("Your text here");