我一直在尝试编写一个模拟此示例的代码(下面的代码)。

function closeMe(){

   		x=document.getElementById("demo");

   		x.style.display="none";

	}

function openMe(){

   		x=document.getElementById("demo");

   		 x.style.display="block";

	}
	<h1>Changing the Style</h1>
	<p>JavaScript can change the style of an HTML element.</p>

	<button type="button" onclick="openMe()">Open!</button>
	<button type="button" onclick="closeMe()">Close!</button>

	<p id="demo">Extra details...You can open and close this paragraph using the buttons above.</p>


不幸的是,在下面的我自己的代码中,当我单击“打开”按钮时,所有东西都消失了。我不知道为什么。

function open() {
  x = document.getElementById("demo");
  x.style.display = "block";
}

function close() {
  x = document.getElementById("demo");
  x.style.display = "none";
}
<p id="demo">Click me to change my HTML content (innerHTML).</p>

<p> this shouldnt disappear</p>

<button onclick="open()">open button</button>

<button onclick="close()">close button</button>


谁能给我一些好建议?

最佳答案

打开和关闭是保留关键字。您需要重命名关闭和打开方法。

open()方法将打开一个新的浏览器窗口。

close()方法关闭窗口。

关于javascript - 点击按钮,一切都消失了,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53815776/

10-11 13:03