HTMLページのテキストの選択を解除するJavaScriptコード。
以下は、HTMLページのテキストの選択を解除するコードです-
例
<!DOCTYPE html> <htmllang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 20px; font-weight: 500; color: rebeccapurple; } </style> </head> <body> <h1>De-select text on HTML page</h1> <div style="color: green;" class="result"> Here is some text inside the div </div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to deselect everything on this page</h3> <script> let resEle = document.querySelector(".result"); document.querySelector(".Btn").addEventListener("click", () => { window.getSelection().removeAllRanges(); }); </script> </body> </html>
出力
上記のコードは次の出力を生成します-
ページ上のテキストを選択する-
[ここをクリック]ボタンをクリックすると-
-
JavaScriptで入力すると、HTMLテキスト入力フィールドが大きくなりますか?
これには、を使用します。入力したいので、を-に設定することを忘れないでください contenteditable="true" 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document&
-
JavaScriptで文字列を繰り返しますか?
文字列を繰り返すには、Join()と一緒にArray()を使用できます。 例 以下はコードです- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <tit