为什么我的不能隐藏呢?是哪里的代码有问题吗,求大神解答
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclick="changecolor()">
<input type="button" value="改变宽高" onclick="changewh()">
<input type="button" value="隐藏内容" onclicl="hidetext()">
<input type="button" value="显示内容" onclick="showtext()">
<input type="button" value="取消设置" onclick="gui0()">
</form>
<script type="text/javascript">
var i=document.getElementById("con");
var j=document.getElementById("txt");
//定义"改变颜色"的函数
function changeColor(){
j.style.color="red";
j.style.backgroundColor="blue";
}
//定义"改变宽高"的函数
function changeSize(){
j.style.width="500px";
j.style.height="400px";
}
//定义"隐藏内容"的函数
function hidetext(){
j.style.display="none";
}
//定义"显示内容"的函数
function showtext(){
j.style.display="block";
}
//定义"取消设置"的函数
function gui0(){
var aa=confirm("是否重置所有设置?");
if(aa==true){
j.removeAttribute("style");
}
}