猿问

取消设置怎么没有用啊 也没有弹出确认对话框

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

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

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

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

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

  </form>

  <script type="text/javascript">

  function changecolor(){

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

      changecolor.style.color="red";

      changecolor.style.backgroundColor="blue";

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

  function changewh(){

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

      changewh.style.width="1000px";

      changewh.style.height="800px";

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

  function hiddencontent(){

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

      hiddencontent.style.display="none";

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

  function mydisplay(){

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

      mydisplay.style.display="block";

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

  function set(){

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

  if(myset==true){

      document.write( 'height:400px'+'width:600px'+"border:#333'+'solid 1px'+'padding:5px');

  }

  else{

      document.write('changecolor()'+'changewh()'+'hiddencontent()'+'mydisplay()');

  }

  }


卟凌卟凌
浏览 1076回答 1
1回答

__innocence

  if(myset==true){       document.write( 'height:400px'+'width:600px'+"border:#333'+'solid 1px'+'padding:5px');   }border左边为何是 "  话说你的编辑器没有报错吗
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答