当前位置:主页 > 网页前端 > JavaScript代码 >

用js实现控件的隐藏及style.visibility的使用

时间:2020-12-10 08:48:00 | 栏目:JavaScript代码 | 点击:

复制代码 代码如下:

<!DOCTYPE html>
<html>
<body>
<p id="p1">这是一段文本。</p>
<input type="button" value="隐藏文本" onclick="document.getElementById('p1').style.visibility='hidden'" />
<input type="button" value="显示文本" onclick="document.getElementById('p1').style.visibility='visible'" />
</body>
</html>

您可能感兴趣的文章:

相关文章