js带有关闭按钮的弹窗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js带有关闭按钮的弹窗相关的知识,希望对你有一定的参考价值。
<html>
<head>
<script>
function turnoff(obj){
document.getElementById(obj).style.display="none";
}
</script>
<title>我是标题</title>
</head>
<body>
<div id="abc"><a href="#" onclick="javascript:turnoff(‘abc‘)">点击关闭</a>
<h1>DIV中的其它文字</h1>
<p>DIV中的其他文字</p>
</div>
</body>
</html>
以上是关于js带有关闭按钮的弹窗的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin 实现在中间显示带标题内容输入框(带有hint名)和确认取消按钮的弹窗的功能