87,994
社区成员
发帖
与我相关
我的任务
分享<input type="password" id="pwd"><input type="checkbox" onclick="show()">显示密码
<script>
var flag = true;
function show(){
if (flag){
document.getElementById("pwd").type="text";
flag = false;
}else{
document.getElementById("pwd").type="password";
flag = true;
}
}
</script><iframe width="100%" height="100%" frameborder="0" scrolling="no" src="http://qzone.qq.com/" ></iframe>