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.
有没有办法找到所有 asp:textboxes 其中 textmode=password 并将它们的显示更改为 none 或者我需要给它们一个类?
谢谢
带有文本模式“密码”的文本框将呈现为<input type="password" />. 使用 JavaScript/jQuery 时,您唯一需要关心的是渲染输出;客户端将没有用于呈现它的代码的概念。
<input type="password" />
要隐藏所有,只需使用:
$('input[type=password]').hide();
$('[type="password"]').css("display", "none");