0

我想问你一个问题...我想在 ZKoss 的输入类型密码中禁用浏览器的自动完成凭据。

我的 ZK 版本是 6.5

这是我的 zul 代码

<grid width="344px">
    <rows>
      <row>
        <label value="Username" />
        <textbox id="username" name="j_username" focus="true" hflex="true" />
      </row>
      <row>
        <label value="Password" />
        <textbox id="password" type="password" name="j_password" hflex="true" />
      </row>
    </rows>
</grid>

你有什么想法?解决方案?谢谢!

4

1 回答 1

0

尝试这个

<zk xmlns:ca="client/attribute">
    <grid>
        <!-- removed for brevity -->
        <textbox ca:autocomplete="off" />
    </grid>
</zk>
于 2019-09-26T21:02:19.677 回答