我需要一个按钮,单击该按钮可以隐藏/显示网页上显示的特定信息。 (类似于在某些网站上输入密码,并且有“显示” /“隐藏”密码的选项,因此您可以检查输入的密码是否正确-即,我希望该按钮无需完全输入刷新页面。)
我是Web开发的新手,因此不确定如何执行此操作。我的JSP如下(我希望按钮显示/隐藏secretKey
):
<div class="container">
<h1>Please use your authentication app to scan the QR code below.</h1>
<img src="${filePath}"/>
<h2>Alternatively, click the button below to display your secret key, to enter it by hand.</h2>
<p>Your secret key is: ${secretKey}</p>
<input type="button" value="show">
</div>