prompt()弹出框可以把输入的明文转换成密码框格式,就是隐藏输入的内容,实现防范如下:
实现:弹出一个对话框,用户输入密码,然后提交表单。
代码示例:
我也找了一下,看见别的知道答案有一个,我没验证,你试试吧。
by:http://zhidao.baidu.com/link?url=SL0iTYqTGsebRra7NmldcJ7Ft6j2LGCZjJc6ihZtSRpHkz1XRsz7s-0DGFzZKTNxASkBCb-Vtyhs2afhmQ4RQq
给你个
Ext.onReady(function() {
var formPanel = new Ext.form.FormPanel({
autoWidth:true,
layout:"form",
frame:true,
labelWidth:65,
labelAlign:"right",
items:[{
xtype:"label",
height : 20,
text :"请输入密码:"
},{
xtype : "textfield",
inputType : 'password',
height : 20,
hideLabel : true,
id:"cancelarea",
anchor : "95%"
}],
buttons : [{
text : '确定',
handler : function(){
alert(Ext.getCmp('cancelarea').getValue());
}
}, {
text : '取消',
handler : function(){
win.hide();
}
}]
});
var win = new Ext.Window({
title:"密码",
modal:true,
width:250,
height:115,
collapsible:false,
resizable:false,
closeAction:'hide',
items:[formPanel]
});
win.show();
});