4

我想使用 gwt(google web toolkit) 在我的网站中使用记住我的选项。我希望当用户填写 ID 和密码并单击登录时,浏览器选项(弹出窗口)像现在记住密码一样打开。

4

1 回答 1

2

将属性添加AutoComplete到您的输入字段

usernamebox.getElement().setAttribute("autocomplete", "on");

passwordbox.getElement().setAttribute("autocomplete", "on");
于 2013-02-18T10:46:33.460 回答