Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
调用事件时是否可以调用f:ajax侦听blur器,但前提是 inputtest 字段值不为空?
f:ajax
blur
当输入文本模糊时,我在托管 bean 中调用一个方法,该方法返回所有其他表单字段。问题是当我模糊一个 emtpy 字段时,因为它是一个必填字段,所以我会收到一条验证消息,但在这种情况下,我不希望它调用托管 bean 方法,前提是其中有一个值。
这是怎么做到的?
提前致谢。
使用event="change"而不是event="blur"或完全删除该event属性,它默认为change已经。这样,该字段将仅在它真正更改时才提交(并验证),因此当最终用户刚刚离开该字段时尚未提交。
event="change"
event="blur"
event
change