0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

textの書き換え

Posted at

text()

  • 要素のテキストを設定、または設定されているテキストを取得できるメソッド
  • text()で取得するテキストにはHTMLタグは含まれない
  • 指定した要素が複数存在した場合は、1つのテキストとして連結されて取得する

テキストの変更

セレクタで指定した要素の中身を変更したい場合は、.text()の中に直接値を入力する

$("要素").text("変更後の文字")
 <body>
    <div class="sample">このテキストを変更する</div>
    <script>
     $('.sample').text('変更しました!')
    </script>
  </body>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?