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.
我想使用 gwt(google web toolkit) 在我的网站中使用记住我的选项。我希望当用户填写 ID 和密码并单击登录时,浏览器选项(弹出窗口)像现在记住密码一样打开。
将属性添加AutoComplete到您的输入字段
AutoComplete
usernamebox.getElement().setAttribute("autocomplete", "on"); passwordbox.getElement().setAttribute("autocomplete", "on");