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

为什么按了更改外观的按钮,"p2元素class的值为”不会变成two?怎样才能达到效果?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<title>className属性</title>

<style>

    body{ font-size:16px;}

    .one{

border:1px solid #eee;

width:230px;

height:50px;

background:#ccc;

color:red;

    }

.two{

border:1px solid #ccc;

width:230px;

height:50px;

background:#9CF;

color:blue;

}

</style>

</head>

<body>

    <p id="p1" > JavaScript使网页显示动态效果并实现与用户交互功能。</p>

    <input type="button" value="添加样式" onclick="add()"/>

<p id="p2" class="one">JavaScript使网页显示动态效果并实现与用户交互功能。</p>

    <input type="button" value="更改外观" onclick="modify()"/>


<script type="text/javascript">

  function add(){

       var p1 = document.getElementById("p1");

       p1.className="one";  

  }

 function modify(){

       var  p2 = document.getElementById("p2");

            p2.className="two";

         }

      document.write("p2元素class的值为;"+ p2.className);

       

</script>

</body>

</html>


正在回答

4 回答

<script type="text/javascript">
	   var i=0;
	   function add(){
	      var p1 = document.getElementById("p1");
	      p1.className="one";
	   }
	   function modify(){
	      var p2 = document.getElementById("p2");
           i++;
        if(i%2==0)
		   {
		p2.className="one";}
        else
		   {
          p2.className="two";
		   }	  

	   }
	</script>


0 回复 有任何疑惑可以回复我~
<script type="text/javascript">
       var i=0;
       function add(){
          var p1 = document.getElementById("p1");
          p1.className="one";
       }
       function modify(){
          var p2 = document.getElementById("p2");
           i++;
        if(i%2==0)
           {
        p2.className="one";}
        else
           {
          p2.className="two";
           }      

       }
    </script>


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

document.write("p2元素class的值为;"+ p2.className);  把这句话在modify中再写一遍

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

慕运维0124838 提问者

那样就跳转到新页面去了,我想让他留在原来的页面上然后按一下”更改外观“按钮他就会自动从one->two,再按一下又变回one,请问怎么实现??
2015-09-19 回复 有任何疑惑可以回复我~
#2

志在必德wzd 回复 慕运维0124838 提问者

很多方法可以实现,js或者jquery都可以。 我在楼下举个例子。
2015-11-16 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么按了更改外观的按钮,"p2元素class的值为”不会变成two?怎样才能达到效果?

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