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

定义"取消设置"的函数

function ClickClear(){

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

    txt1=confirm("是否取消设置?");

    if(txt1==true){ 

        document.getElementById("txt").removeAttribute("style"); 

    

 }

正在回答

3 回答

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

function resetStyle(){

    var message=confirm("你确定重置所有样式吗?");

    if(message==(true){

        mye.removeAttribute('style')

}

}

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

除了楼上的方法还有没有其他的实现???

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

//定义"取消设置"的函数

function rest(){

    if(confirm("是否取消设置")){

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

    obj.style.color="black";

    obj.style.backgroundColor="white";

    obj.style.width="600px";

    obj.style.height="400px";

    obj.style.display="block";

    }


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

举报

0/150
提交
取消

定义"取消设置"的函数

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