为了账号安全,请及时绑定邮箱和手机立即绑定

怎么都运行不了,找不出错误了。

<!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" onclick="changecolor()" value="改变颜色" >  

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

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

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

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

  </form>

  <script type="text/javascript">

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

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

   function changecolor()

   {

       mystr.style.color="red";

       mystr.backgroundColor="#CCC";

   }

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

   function changewh()

   {

       mystr.style.width="300";

       mystr.style.height="600";

   }

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

   function hidetext()

      { mystr.style.display="none";}

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

   function showtext()

     {

        mystr.style.display="block";

     }

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

   function cancelset()

   { var message=confirm("确定要重置吗?")

       if(message==true)

       mystr.style="none";}

   }


  </script>

</body>

</html>


正在回答

4 回答

你没有定义你的变量mystr,你用var定义一下试试

0 回复 有任何疑惑可以回复我~
#1

夜信

定义到函数里
2018-08-01 回复 有任何疑惑可以回复我~

<!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" onclick="color()" value="改变颜色" > 
    <input type="button" onclick="width1()" value="改变宽高" >
    <input type="button" onclick="d3()" value="隐藏内容" >
    <input type="button" onclick="d4()" value="显示内容" >
    <input type="button" onclick="d5()" value="取消设置" >
  </form>
  <script type="text/javascript">
//定义"改变颜色"的函数
    var con=document.getElementById("con");
    var txt=document.getElementById("txt");
    function color(){
       
        con.style.color="red";
        txt.style.color="blue";
        con.style.backgroundColor="black";
        txt.style.backgroundColor="#ccc";
    }

//定义"改变宽高"的函数
    function width1(){
        con.style.width="1000px";
        con.style.height="20px";
        txt.style.width="100px";
        txt.style.height="200px";
    }

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

    function d3(){
        txt.style.display="none";
    }
//定义"显示内容"的函数

    function d4(){
        txt.style.display="block";
    }
//定义"取消设置"的函数
    function d5(){
        var a=confirm("确认取消变动吗?");
        if(a==true){
            var s=document.getElementById("txt");
            s.removeAttribute("style");

        }
    }

  </script>
</body>
</html>

0 回复 有任何疑惑可以回复我~

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="gb2312">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title>Document</title>

</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>

<style>

#txt{height: 150px;background: #424242;color:aliceblue;}

</style>

<form>

<input type="button" value="改变颜色" onclick="ocolor()">

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

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

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

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

</form>


<script type="text/javascript">

var otxt = document.getElementById('txt');

var ocon = document.getElementById('con');

function ocolor(){

otxt.style.background = 'Orchid';

}

function owidth(){

otxt.style.width = '300px';

otxt.style.height = 'auto';

}

function off(){

if(otxt.style.display=='block'){

otxt.style.display='none';

}else{

otxt.style.display='block' ;

}


}

function not(){

otxt.style='';

}


</script>

</body>

</html>


<!-- //定义"改变颜色"的函数



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



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



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



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


0 回复 有任何疑惑可以回复我~

后面弄着弄着效果出来了,可是那个改变宽高怎么都实现不了

1 回复 有任何疑惑可以回复我~
#1

宝慕林1604860

价格px没有像素 css怎么写他就怎么写
2018-07-26 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

怎么都运行不了,找不出错误了。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信