當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML onselect用法及代碼示例


當在元素中選擇了某些文本時,onselect事件屬性將起作用。它是事件屬性的一部分。許多HTML元素都支持它,例如<輸入類型= “file”>,<輸入類型= “password”>,<輸入類型= “text”>和<textarea>。

用法:

<element onselect = "script">




例:

HTML

<!DOCTYPE html>
<html>
    <head>
        <title>onselect event attribute</title>
        <style>
            h1 {
            color:green;
            }
            body {
                text-align:center;
            }
        </style>
        <script>
            function Geeks() {
                alert("Text selected!");
            }
        </script>
    </head>
    <body>
        <h1>GeeksforGeeks</h1>
        <h2>onselect event attribute</h2>
        Text Box:<input type="text" value="GeeksforGeeks:A computer 
        science portal for geeks" onselect="Geeks()">
    </body>
</html>                    
</html>

輸出:

支持的瀏覽器:下麵列出了onselect屬性支持的瀏覽器:

  • 蘋果Safari
  • 穀歌瀏覽器
  • Firefox
  • Opera
  • IE瀏覽器

相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | onselect Event Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。