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

为什么我的取消设置按钮点下去没有反应

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

function cancel() {

        var myans=confirm("是否确定取消操作?")

        if (myans==true){

            p1.removeAttribute=('style');

        }

    }

其他几个按钮都能按,只有这个一直没实现,想了很久也不明白是怎么回事,求大神解答


提问者:慕运维9164912 2018-07-15 19:28

个回答

  • 慕慕5304577
    2018-07-15 21:23:27
    已采纳

    demo.removeAttribute('style');

  • qq_依云弄影_0
    2018-07-24 15:15:36

    .removeAttribute('style');

    removeAttribute(指定的属性) 方法删除指定的属性。