如何制作只读选择下拉列表?
我正在尝试将下拉列表设置为只读:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用只读属性。如果下拉列表不是在您的特定情况下使用的最佳元素,您可以完全避免输出下拉列表。
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.
如果您只想选择一个值,则可以随时禁用它。使用当前的框架,您可能会执行以下操作:
If you mean to only have one value selected, you could always disable it. Using your current framework, you might do something like: