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

请问大佬最后这个取消设置的函数应该怎么写?

请问取消设置的函数怎么写?恢复原来的样式这个函数怎么写?

正在回答

3 回答

function cancel()
{
    var x=confirm("真的要取消设置吗?") ;
    if(x==true)
    {
            var p=document.getElementById("txt");
        p.style.color="";
          p.style.backgroundColor="";
        p.style.width="";
          p.style.height="";
          p.style.display="";
    }
    else 
    {
    }
}

留空白就可以啦,当然你也可以设置为原来的值,比如:

function 取消设置()
{
        var x=confirm("是否取消设置?");
        if(x==true){
            var p=document.getElementById("txt");
            p.style.width="600px"
            p.style.height="400px"
            p.style.color="black"
            p.style.backgroundColor="white"
            p.style.display="block"
        }
        else
        {
            
        }
}


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

object.removeAttribute("style");

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

觉得可以全部信息都自己编一个,也可以直接用原来style的

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

举报

0/150
提交
取消

请问大佬最后这个取消设置的函数应该怎么写?

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