課程
/前端開發(fā)
/JavaScript
/JavaScript入門篇
為什么我做完了運(yùn)行不了,就是點(diǎn)擊了隱藏內(nèi)容它沒反應(yīng)
2021-10-02
源自:JavaScript入門篇 3-5
正在回答
大概率你的none和block沒加""
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>display</title>??? <script type="text/javascript"> ??????? function hidetext() ??? ??? ?{ ??? ??? ?var mychar = document.getElementById("con");?????????? mychar.style.display="none";?? ??? ?} ??? ??? ?function showtext() ??? ??? ?{ ??? ??? ?var mychar = document.getElementById("con");??????? mychar.style.display="block";?? ??? ?}??? </script> </head> <body> ???? <h1>JavaScript</h1> ???? <p id="con">做為一個(gè)Web開發(fā)師來說,如果你想提供漂亮的網(wǎng)頁、令用戶滿意的上網(wǎng)體驗(yàn),JavaScript是必不可少的工具。</p> ??? <form>?????? <input type="button" onclick="hidetext()" value="隱藏內(nèi)容" /> ?????? <input type="button" onclick="showtext()" value="顯示內(nèi)容" /> ??? </form></body> </html>
把代碼發(fā)出來大家才能看到問題在哪啊
舉報(bào)
JavaScript做為一名Web工程師的必備技術(shù),本教程讓您快速入門
1 回答為啥一開始是Hello world
3 回答hello<br>world! 不要換行
6 回答為什么新標(biāo)題不是hello world
2 回答為什么會(huì)出現(xiàn)兩次Hello world
2 回答為什么第一行會(huì)輸出Hello World?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2022-10-11
大概率你的none和block沒加""
2022-02-08
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>display</title>
??? <script type="text/javascript">
??????? function hidetext() ?
?? ??? ?{ ?
?? ??? ?var mychar = document.getElementById("con");
?????????? mychar.style.display="none";
?? ??? ?} ?
?? ??? ?function showtext() ?
?? ??? ?{ ?
?? ??? ?var mychar = document.getElementById("con");
??????? mychar.style.display="block";
?? ??? ?}
??? </script>
</head>
<body> ?
??? <h1>JavaScript</h1> ?
??? <p id="con">做為一個(gè)Web開發(fā)師來說,如果你想提供漂亮的網(wǎng)頁、令用戶滿意的上網(wǎng)體驗(yàn),JavaScript是必不可少的工具。</p>
??? <form>
?????? <input type="button" onclick="hidetext()" value="隱藏內(nèi)容" />
?????? <input type="button" onclick="showtext()" value="顯示內(nèi)容" />
??? </form>
</body>
</html>
2021-10-03
把代碼發(fā)出來大家才能看到問題在哪啊