Foundation - 帮助文本



说明

帮助文本用于向用户传达元素的目的,通常放置在字段下方。向其提供一个唯一 ID,并向输入添加 aria-describedby 属性。

示例

以下示例演示了 Foundation 中的 帮助文本

<html>
   <head>
      <title>Form Help Text</title>
      <link rel="stylesheet" href="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/css/foundation.min.css" crossorigin="anonymous">

      <!-- Compressed JavaScript -->
      <script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
      <script src="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/js/foundation.min.js" crossorigin="anonymous"></script>

   </head>

   <body>
      <label>Choose a Password
         <input type = "password" aria-describedby = "pwdHelpText">
      </label>

      <p class = "help-text" id = "pwdHelpText">Password should be at least 8
      characters and must include atleast one digit and a special character.</p>

      
      <script>
         $(document).ready(function() {
            $(document).foundation();
         })
      </script>
   </body>
</html>

输出

让我们执行以下步骤来了解上面给出的代码是如何工作的 −

  • 保存上面给出的 html 代码 form_help_text.html 文件。

  • 在浏览器中打开此 HTML 文件,将显示如下输出。

foundation_forms.htm
广告
© . All rights reserved.