gpt4 book ai didi

java - JSF : How put onfocus, 输入字段中的模糊效果?

转载 作者:行者123 更新时间:2023-11-29 03:55:20 26 4
gpt4 key购买 nike

我在考虑如何在 JSF 2.0 的输入字段中实现 onfocusonblur 效果。

Example in HTML

我在 HTML 中执行以下操作:

<input type="text" name="name" id="name" size="30" value="Name (required)"
onblur="if (this.value == ''){this.value = 'Name (required)'; }"
onfocus="if (this.value == 'Name (required)') {this.value = ''; }"
class="text-input" />

现在我想知道如何在 JSF 2.0 中做到这一点。有人有想法吗?

编辑

我正在尝试“onblur”和“onfocus”属性,但我的输入字段中仍然没有出现任何内容。

<h:inputText onblur="Nome" onfocus="" ></h:inputText>

最佳答案

您可以只使用与 HTML 示例相同的属性。下面这段代码工作得很好:

<h:inputText id="name" value="Name (required)"
onblur="if (this.value == ''){this.value = 'Name (required)'; }"
onfocus="if (this.value == 'Name (required)') {this.value = ''; }" />

关于java - JSF : How put onfocus, 输入字段中的模糊效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6767161/

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