如何使用confirm()确定框,来确认是否取消设置。如是将恢复初始值。代码怎么写?
document.getElementsByTagName("div")[0].removeAttribute("style");//定义"取消设置"的函数
function canle(){
var c=confirm(“是否恢复初值”)
if(c="true")
txt.removeAttribute("style");
}
removeAttribute("style")是回到原始属性
//取消设置
function num5(){
var dom = confirm('是否取消设置');
if(dom == true){
mychar.style.cssText = null;
}
}