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

代码改成这样了,还是不行,还有什么办法

<!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="改变颜色" >  

    <input type="button" value="改变宽高" >

    <input type="button" value="隐藏内容" >

    <input type="button" value="显示内容" >

    <input type="button" value="取消设置" >

  </form>

  <script type="text/javascript">

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

function setColor()

{

    var target=document.getElementById("con");

    target.style.color="green";

    target.style.backgroundColor="blue";

}


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

function setSize()

{

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

    target.style.width="300px";

    target.style.height="300px";

}


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

function hidden()

{

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

    target.style.dispaly="none";

}


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

function visible()

{

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

    target.style.dispaly="block";

}



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

function offset(){

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

    var offset=offset("是否取消设置");

    if(offset==true)

    {

        target.removeAttribute("style");

    }

    else{

        return;

    }

}

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

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

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

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

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

  </script>

</body>

</html>


正在回答

3 回答

我这个更简便,但是不知道宽高怎么弄,想求大佬帮忙弄一下。

<!DOCTYPE html>

<html>

<head>

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

<title>编程挑战</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="改变颜色" onClick="color()">  

    <input type="button" value="改变宽高" onClick="width()">

    <input type="button" value="隐藏内容" onClick="dplay()">

    <input type="button" value="显示内容" onClick="play()">

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

  </form>

  <script type="text/javascript">

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

  var w2=document.getElementById("con");

  function color(){

    w1.style.color="red";

    w1.style.backgroundColor="#ccc";

    w2.style.color="blue";

    w2.style.backgroundColor="#99CCFF";

  }

function width(){

w1.style.width="300px";

w2.style.height="400px";

}

function dplay(){

w1.style.display="none";

}

function play(){

w1.style.display="block";

}

function rest(){

var w1=confirm("是否取消所有设置?");

if(w1==true||w2==true){

txt.removeAttribute('style');

con.removeAttribute('style');

}

else{

alert("请您继续!")

}

}

  </script>

</body>

</html>


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

我这个更简便

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

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

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

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

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

  </form>

  <script type="text/javascript">

 

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

function color(){

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

    color.style.color = "#f00";

    color.style.backgroundColor = "#ccc";

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

function wh(){

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

    w.style.width = "300px";

    w.style.height = "200px";

}


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

function hi(){

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

    h.style.display = "none";

}


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

function bl(){

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

    b.style.display = "block";

}


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

function re(){

    if(confirm("确定重置网页吗?"){

       re.style="none";

    }

}



  </script>


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

1、将代码下面的5个input删除,js里面不要这么放html代码。

2、在最开始的5个input中依次添加onclick="setColor()"、onclick="setSize()"、onclick="hidden1()"、onclick="visible()"、onclick="offset1()"。

3、方法的命名最好不要用hidden等保留字。你的input的方法名要和js中一样。大小写也要一样。你的offset大小写不一致。你的display也写错了,你写成了dispaly.

4、最后一个是否取消设置。我用了confirm来进行弹窗。

---------下面是我的修改之后的代码------------------

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


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


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


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


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


  </form>


  <script type="text/javascript">


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


function setColor()


{


    var target=document.getElementById("con");


    target.style.color="green";


    target.style.backgroundColor="blue";


}




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


function setSize()


{


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


    target.style.width="300px";


    target.style.height="300px";


}




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


function hidden1()


{

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

    target.style.display="none";


}




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


function visible()


{


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

    target.style.display="block";


}



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


function offset1(){

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


    var offset=confirm("是否取消设置");


    if(offset==true)


    {


        target.removeAttribute("style");


    }


    else{


        return;


    }


}




  </script>


</body>


</html>

-----------------

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

1710010101陈沐梓 提问者

谢谢大佬
2019-04-10 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

代码改成这样了,还是不行,还有什么办法

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