HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLonselectイベント属性


HTML onselectイベント属性は、ユーザーがHTMLドキュメント内のHTML要素のテキストを選択したときにトリガーされます。

構文

以下は構文です-

<tagname onselect=”script”></tagname>

HTMLonselectイベント属性の例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color: #000;
      height: 100vh;
      background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
      text-align: center;
      padding: 20px;
   }
   textarea {
      border: 2px solid #fff;
      background: transparent;
      padding: 10px;
   }
   ::placeholder {
      color: #000;
   }
</style>
</head>
<body>
<h1>HTML onselect Event Attribute Demo</h1>
<textarea onselect="selectFn()" rows="5" cols="50">Please select me because I'm dummy text.</textarea>
<script>
   function selectFn() {
      document.body.style.background = "linear-gradient(45deg, #8BC6EC 0%, #9599E2 100%) no-repeat";
      document.querySelector("textarea").style.background = "#fff";
   }
</script>
</body>
</html>

出力

HTMLonselectイベント属性

次に、テキスト領域要素内のテキストを選択して、onselectイベント属性がどのように機能するかを確認します。

HTMLonselectイベント属性


  1. HTMLondragendイベント属性

    HTML ondragendイベント属性は、ユーザーがHTMLドキュメント内のHTML要素の要素またはテキストのドラッグを終了したときにトリガーされます。 構文 以下は構文です- <tagname ondragend=”script”></tagname> HTMLオンドラッグイベント属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <head> <style>    body {       color: #000;

  2. HTMLonpageshowイベント属性

    HTML onpageshowイベント属性は、ユーザーがWebページに移動したときにトリガーされます。 構文 以下は構文です- <body onpageshow=”script”></body> HTMLonpageshowイベント属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;       height: 100vh; &nb