我想在我的网站上使用gwt(google web toolkit)来记住我的选项。我想当用户填写id和密码并点击登录而不是浏览器选项(弹出窗口)打开就像记住密码或者现在没有。
答案 0 :(得分:2)
将属性AutoComplete
添加到输入字段
usernamebox.getElement().setAttribute("autocomplete", "on");
passwordbox.getElement().setAttribute("autocomplete", "on");