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

为什呢不对,感觉和别人的差不多呀!

function hidden() {  var now=confirm("是否取消设置","是");  if(now==true)  {       document.getElementById("txt").removeAttribute('style')  } 为什么不可以取消设置呢???????

提问者:木木0923 2016-10-21 16:40

个回答

  • YayuNeko
    2016-10-22 19:12:59
    已采纳

    同样遇到这样的问题,试试用英文代替: confirm("Do you want to cancel?");

  • 前端开发小菜鸟jas
    2016-10-30 13:47:57

    if(now==true)  { now.removeAttribute('style')  }

  • 慕运维1431477
    2016-10-21 17:28:00

    confirm("是否取消设置");

  • 蜡笔小新_的梦幻王国
    2016-10-21 17:25:23

    你的取消设置按钮是否调用 hidden()函数??