gpt4 book ai didi

javascript - 如果再次单击同一按钮或单击其他按钮,如何隐藏 Iframe?

转载 作者:行者123 更新时间:2023-11-28 11:15:16 24 4
gpt4 key购买 nike

我可以通过 iframe 显示我的另一个网页,但是我怎样才能让它不可见或在再次单击同一个按钮时终止该网页

<html>
<script type="text/javascript">
function showIFrame() {
var iframe = document.getElementById("myiframe");
iframe.style.display="block";
}
</script>
<style>
#myiframe {
display:none; }
</style>
<body>
<iframe id="myframe" name="carsearch" width="535" height="625" scrolling="no" frameborder="0"></iframe>
<form name="search" id="search" method="get" action="../crime_map/map_crime_pending.php" target="carsearch">

<button type="submit" id="SearchCarButton" class="submitBtn" onclick="showIFrame()"/> <span>Search</span></button></form>
<button>Catcher</button>
</body>
</html>

最佳答案

试试这个检查显示的代码,并根据当前状态改变它;

   function showIFrame() {  
var iframe = document.getElementById("myiframe");
var d = iframe.style.display;
if(d=="block"){
iframe.style.display = "none"
}else{
iframe.style.display = "block";
}
}

关于javascript - 如果再次单击同一按钮或单击其他按钮,如何隐藏 Iframe?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21794559/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com