我按照边上照抄的代码,为什么出来以后,我的能隐藏起来,但是隐藏了以后,按显示,却显示不出来呢?
<script type="text/javascript">
function hidetext(){
document.getElementById("con").style.display="none";
}
function showtext(){
document.getElementById("con").style.display="block";
}
</script>
<body>
<h1>javascript</h1>
<p id="con">HELLO my love</p>
<form>
<input type="button" onclick="hidetext()" value="不显示内容" />
<input type="button" oncilck="showtext()" value="显示内容" />
oncilck="showtext()" 字母错了
改变宽高的代码怎么写,需不需要加单位?
你的点击事件onclick写错了显示的onclick
你把<form>去了试试