当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Input Search placeholder用法及代码示例


HTML DOM中的DOM输入搜索占位符属性用于设置或返回搜索字段的占位符属性的值。占位符属性指定描述输入字段的期望值的简短提示。在用户输入值之前,该字段会显示简短提示。

用法:

  • 它返回占位符属性。
    searchObject.placeholder
  • 它用于设置占位符属性。
    searchObject.placeholder = text

属性值:它包含单个值文本,该文本用于定义描述搜索字段的期望值的简短提示。


返回值:它返回一个表示简短提示的字符串值,该简短提示描述了搜索字段的期望值。

示例1:本示例说明如何返回Input search占位符属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Input Search placeholder Property 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Input Search placeholder Property</h2> 
    <form id="myGeeks"> 
        <input type="Search" 
               id="test" 
               placeholder="Type to search.." 
               readOnly> 
    </form> 
    <br> 
    <br> 
    <button ondblclick="Access()"> 
      click here 
    </button> 
  
    <p id="check" 
       style="font-size:24px; 
              color:green;"> 
  </p> 
  
    <script> 
        function Access() { 
  
            // type="search"  
            var s = document.getElementById( 
                "test").placeholder; 
            
            document.getElementById( 
                "check").innerHTML = s; 
        } 
    </script> 
  
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

示例2:本示例说明了如何设置“输入”搜索占位符属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Input Search placeholder Property 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Input Search placeholder Property</h2> 
    <form id="myGeeks"> 
        <input type="Search" 
               id="test" 
               placeholder="Type to search.." 
               readOnly> 
    </form> 
    <br> 
    <br> 
    <button ondblclick="Access()"> 
      click here 
    </button> 
  
    <p id="check" 
       style="font-size:24px; 
              color:green;"> 
  </p> 
  
    <script> 
        function Access() { 
  
            // type="search"  
            var s = document.getElementById( 
                "test").placeholder = "search here"; 
            
            document.getElementById( 
                "check").innerHTML =  
            "The value of the Placeholder attribute was canged to " 
            + s; 
        } 
    </script> 
  
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入搜索占位符属性支持的浏览器如下:

  • 谷歌浏览器
  • Internet Explorer 10.0以上
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Search placeholder Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。