问答详情
源自:4-1 编程挑战

这哪里出现了问题,为什么一个按钮都不能使用

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />

<title>javascript</title>

<style type="text/css">

body{font-size:12px;}

#txt{

    height:400px;

    width:600px;

border:#333 solid 1px;

padding:5px;}

p{

line-height:18px;

text-indent:2em;}

</style>

</head>

<body>

  <h2 id="con">JavaScript课程</H2>

  <div id="txt"> 

     <h5>JavaScript为网页添加动态效果并实现与用户交互的功能。</h5>

        <p>1. JavaScript入门篇,让不懂JS的你,快速了解JS。</p>

        <p>2. JavaScript进阶篇,让你掌握JS的基础语法、函数、数组、事件、内置对象、BOM浏览器、DOM操作。</p>

        <p>3. 学完以上两门基础课后,在深入学习JavaScript的变量作用域、事件、对象、运动、cookie、正则表达式、ajax等课程。</p>

  </div>

  <form>

  <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->

    <input type="button" value="改变颜色" oncick="changeColor()">  

    <input type="button" value="改变宽高" onclick="changeWH()">

    <input type="button" value="隐藏内容" onclick="hidetext()">

    <input type="button" value="显示内容" onclick="showtext()">

    <input type="button" value="取消设置" onclick="cancel()">

  </form>

  <script type="text/javascript">

//定义"改变颜色"的函数

function changeColor(){

    var h2=document.getElementById("txt");

    h2.style.color="blue";

}


//定义"改变宽高"的函数

function changeWH(){

    var h2=document.getElementById("txt");

    h2.style.width="500px";

    h2.style.height="500px";

}


//定义"隐藏内容"的函数

function hidetext(){

    var h2=document.getElementById("txt");

    h2.style.display="none";

}


//定义"显示内容"的函数

function showtext(){

    var h2=document.getElementById("txt");

    h2.style.display="block";

}


//定义"取消设置"的函数

function cancel(){

    var message=confirm("你确定把以上所有的设置恢复原始值吗");

    if(message==true){

        h2.removeAttribute("style)

    }

}



  </script>

</body>

</html>


提问者:qq_一曲离殇丶笑看人世繁华_3 2018-12-14 15:47

个回答

  • qq_慕斯1552056
    2018-12-27 00:05:35
    已采纳

    我看了一个小时了,妹子你第一个button的“onclick”写错了,所以第一个按钮不起作用。var message=confirm("你确定把以上所有的设置恢复原始值吗");,这句结束的分号要在英文状态下输入,【(“style”);】,一个都不能掉哦,文本内容是在样式为txt的div框里的,所以removeAttribute前面的【h2】要改成【txt】,

  • qq_爱永久_0
    2018-12-17 15:25:42

    https://img.mukewang.com/5c174f5c000101a904670097.jpg少了右边的引号和分号

  • 慕九州2317894
    2018-12-15 11:03:38

    https://img2.mukewang.com/5c146edd0001476802160133.jpg鼠标点击事件函数写错了;onclick

  • dystone
    2018-12-14 17:24:44

    https://img1.mukewang.com/5c1376bd000107b005790096.jpgh2在cancel()函数中未定义

  • dystone
    2018-12-14 17:03:39

    https://img1.mukewang.com/5c1371c8000107b005790096.jpg这忘记了分号