drupal: Form API, dynamically hide or show fields based on input(drupal:表单 API,根据输入动态隐藏或显示字段)
问题描述
我正在构建一个表单模块.早期的领域之一是一组单选按钮.默认情况下,第一个按钮被选中.接下来我会有一系列的选择框.一个需要可见,其他则不可见.然后当用户选择不同的单选按钮时,我希望显示或隐藏不同的选择框.如何在默认情况下隐藏字段和标签,然后根据选择的单选按钮(或其他选择框选项)显示它?
I'm building a form module. One of the early fields is a set of radio buttons. By default the first button is selected. Next I'll have a series of select boxes. One needs to be visible, the others invisible. Then as the user selects a different radio button I want different select boxes to show or hide. How can I hide the field and label by default and show it later dependent upon which radio button (or another select box option for that matter) is chosen?
推荐答案
您可以使用 #states
属性来实现.#states
属性可以应用于所有 Form API 元素.
You can use the #states
property to achieve that. The #states
property can be applied to all Form API elements.
这是 文档链接一个例子.
这篇关于drupal:表单 API,根据输入动态隐藏或显示字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:drupal:表单 API,根据输入动态隐藏或显示字段
基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01