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

每次都得var定义一次,有没有什么方法写在一个function里面?

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8" />

<title>DOM</title>

</head>

<style type="text/css">

*{ font-size:12px;}

#txt{

    height:400px;

width:600px;

border:#333 solid 1px;

padding:5px;

}

p{

line-height:18px;

text-indent:2em;}

</style>

<body>

<h2 id="ap">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="mycolor1()">

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

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

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

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

</form>

</body>

<script type="text/javascript">

//编程练习

function mycolor1(){

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

dd.style.color="red";

dd.style.backgroundColor="#CCCCCC";

}

function mycolor2(){

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

dd.style.width="400px";

dd.style.height="200px";

}

function mycolor3(){

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

dd.style.display="none";

}

function mycolor5(){

if (confirm("确定取消设置吗?")) {

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

dd.style.color="red";

dd.style.backgroundColor="#CCCCCC";

dd.style.width="400px";

dd.style.height="200px";

dd.style.display="block";

}

}

function mycolor4(){

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

dd.style.display='block';

}


</script>

</html>


提问者:忆笙丨歌 2019-05-11 16:43

个回答

  • weixin_慕神8455043
    2019-05-15 13:24:23

        function color(){

            document.getElementById("txt").style.color="red";

        }

        function widhei(){

            document.getElementById("txt").style.width="400px";

            document.getElementById("txt").style.height="200px";

        }

        function hiadtext(){

            document.getElementById("txt").style.display="none";

        }

        function showtext(){

            document.getElementById("txt").style.display="block";

        }

        function del(){

            var i ="";

                var i=confirm("只怪那么汹涌");

                if(i==true){

                document.getElementById("txt").style.color="#000";

                document.getElementById("txt").style.width="600px";

                document.getElementById("txt").style.height="400px";

                document.getElementById("txt").style.display="block";

                }else{

                    return false;

                }

        }


  • 慕雪5286490
    2019-05-11 20:42:15

    <form>
      <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
        <input type="button" value="改变颜色" onclick="chancolor(p)">  
        <input type="button" value="改变宽高" onclick="chanwh(p)">
        <input type="button" value="隐藏内容" onclick="nodis(p)">
        <input type="button" value="显示内容" onclick="dis(p)">
      </form>
      <script type="text/javascript">
    //定义"改变颜色"的函数
    var p = document.getElementById("txt");
    function chancolor(p){
        p.style.color = "blue";
        p.backgroundcolor="#ccc"
    }
    
    //定义"改变宽高"的函数
    function chanwh(p){
        p.style.width="200px";
        p.style.height="200px"
    }
    
    //定义"隐藏内容"的函数
    function nodis(){
        p.style.display = "none";
    }
    
    //定义"显示内容"的函数
    function dis(){
        p.style.display = "block";
    }