我認爲這是回答你的問題,你應該使用JavaScript。一個小腳本,並刪除一些CSS的行。
https://jsfiddle.net/prsebqg3/
HTML文件
<span id="span3" tabindex="0">Hide Me</span>
<span id="span2" tabindex="0">Show Me</span>
<p id="alert" >Some alarming information here</p>
<script>
document.getElementById("span3").onclick = function() {functionHide()};
function functionHide() {
document.getElementById("span2").style.display = "block";
document.getElementById("span3").style.display = "none";
document.getElementById("alert").style.display = "none";
}
document.getElementById("span2").onclick = function() {functionShow()};
function functionShow() {
document.getElementById("span2").style.display = "none";
document.getElementById("span3").style.display = "block";
document.getElementById("alert").style.display = "block";
}
</scrip>
css文件
#span2{
display:none;
}
不明白你在說什麼 –
什麼ü的意思是說的人嗎? –
是的,似乎也適合我工作 –