ASDDSAFAS
2017-06-26 14:27
怎么恢复原始值?
恢复原始值有两种方式 第一种方式: obj.style=' '; 这种意思是将 对象的样式 赋值为空 赋值运输 是从右往左 把右边的给左边的 。 第二种方式 obj.removeAttribute('style') 这种的意思 是 把 对象的 style 属性 移除掉。
style="" 当然这样子更简洁
设置过的值都置空就可以了
function cancel(){
x.style.color="" ;
x.style.width="" ;
x.style.display="" ;
x.style.display="" ;
}
function cancel(){
if(confirm("是否取消设置?")){
div.style="";
}
}
你试试
JavaScript入门篇
739817 学习 · 9566 问题
相似问题