我正在尝试为我们的系统构建一个登录小部件,因此我正在以编程方式构建输入。用户名输入很简单,但我在使用正确类型的输入渲染时遇到问题。当页面加载时,字符仍然显示而不是隐藏。
var LoginPWInput = new dojox.mobile.TextBox({
type: "password"
, jsId: "loginPassword"
, placeHolder: "Password"
, style: "width:200px;float:right;"
, onkeypress: "loginKeyPress(event);"
, tabIndex: "2"
}, document.createElement('input'));
LoginPW.addChild(LoginPWInput);
我也试过LoginPWInput.set('type','password');
没有用。
关于如何正确执行此操作的任何想法?我在这里做错了什么?