如何制作只读选择下拉列表?

发布于 2024-12-01 07:58:15 字数 328 浏览 0 评论 0原文

我正在尝试将下拉列表设置为只读:

$element = $this->CreateElement('select', 'type');
$element->addMultiOptions( $Types );
$element->setRequired(true);
$element->setAttrib('readonly',true);
$element->setLabel('Type');
$elements[] = $element;

显示了下拉列表,但我可以选择其他值。

如何使下拉菜单只读?

谢谢

I am trying following to make a dropdown readonly:

$element = $this->CreateElement('select', 'type');
$element->addMultiOptions( $Types );
$element->setRequired(true);
$element->setAttrib('readonly',true);
$element->setLabel('Type');
$elements[] = $element;

A dropdown is shown but I am able to select other values.

How to make a dropdown readonly ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

韬韬不绝 2024-12-08 07:58:15

您可以使用只读属性。如果下拉列表不是在您的特定情况下使用的最佳元素,您可以完全避免输出下拉列表。

$element->setAttrib('disabled','disabled');

You can use the read only attribute. You could avoid outputting a dropdown at all if it is not the best element to use in your particular case.

$element->setAttrib('disabled','disabled');
孤独陪着我 2024-12-08 07:58:15

如果您只想选择一个值,则可以随时禁用它。使用当前的框架,您可能会执行以下操作:

$element->setAttrib('disabled', true);

If you mean to only have one value selected, you could always disable it. Using your current framework, you might do something like:

$element->setAttrib('disabled', true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文