JavaScriptを使用してWebページの要素タグ内にないテキストを削除しますか?
テキストを削除するには、remove()の概念を使用します。フィルタを使用して、要素タグ内にないコンテンツを取得します。
<div><h1>Demo Program</h1></div> This is also Demo Program
また、要素タグの下にないため、「これもデモプログラムです」を削除する必要があります。そのための競合コードは、filter()とremove()を使用して次のようになります-
例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> </head> <body> <div><h1>Demo Program</h1></div> This is also Demo Program <script> $('body').contents().filter(function(){ return this.nodeType != 1; }).remove(); </script> </body> </html>
上記のプログラムを実行するには、ファイル名「anyName.html(index.html)」を保存して、ファイルを右クリックします。 VSCodeEditorで[OpenwithLiveServer]オプションを選択します。
出力
これにより、次の出力が生成されます-
-
JavaScriptでIDで要素を削除しますか?
IDで要素を削除するには、remove()を使用できます。 例 以下はコードです- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>D
-
Webページでビデオタグを非表示にする-JavaScript
Webページに次のサンプルビデオタグがあるとします <video class="hideVideo" width="350" height="255" controls> <source src="" id="unique_video_id"> You cannot play video here...... </video> Webページで動画を非表示にするには、yourVariableName.styl