gpt4 book ai didi

gwt - 我们怎样才能使 GWT 中的 TextArea 不可编辑?

转载 作者:行者123 更新时间:2023-12-01 09:09:31 24 4
gpt4 key购买 nike

有什么方法可以使 GWT 中的 TextArea 不可编辑?如果是,请帮助我解决问题。提前致谢。

最佳答案

setReadOnly(true)

如下所示翻译成HTML

 <textarea class="gwt-TextArea gwt-TextArea-readonly" name="name" readonly=""></textarea>

这在 HTML 4.01 和 HTML5 中工作正常,但在 HTML readonly Attribute 中定义的 XHTML 中无效

In XHTML, attribute minimization is forbidden, and the readonly attribute must be defined as

<textarea readonly="readonly">

试试这个来禁用在所有情况下都有效的文本区域字段。

textArea.getElement().setAttribute("readonly", "readonly");

同样适用于

setEnabled(false)

翻译成 HTML 如下所示

<textarea class="gwt-TextArea" name="name" disabled=""></textarea>

这在 HTML 4.01 和 HTML5 中工作正常,但在 HTML disabled Attribute 中定义的 XHTML 中无效

In XHTML, attribute minimization is forbidden, and the disabled attribute must be defined as

<input disabled="disabled" />

试试这个来禁用在所有情况下都有效的文本区域字段。

textArea.getElement().setAttribute("disabled", "disabled");

关于gwt - 我们怎样才能使 GWT 中的 TextArea 不可编辑?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22784430/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com