1. ホーム
  2. jquery

[解決済み] jQueryでテキストを変更する方法

2023-06-01 11:31:10

質問

私は h1 で、id が toptitle のようなものが動的に作成され、HTMLを変更することができません。 ページによって違うタイトルになります。現在、Profileの場合は、これを次のように変更したい。 New word というようにjQueryで変更したいです。

<h1 id="toptitle">Profile</h1> // Changing only when it is Profile  
// to
<h1 id="toptitle">New word</h1>

注意:もしテキストが Profile である場合、それを New word .

どのように解決するのですか?

このようにすればよいでしょう。

$(document).ready(function() {
    $('#toptitle').text(function(i, oldText) {
        return oldText === 'Profil' ? 'New word' : oldText;
    });
});

のときだけ内容を置き換えます。 Profil . 参照 text をjQuery APIで参照してください。