4-1的取消设置怎麽弄?
//定义"取消设置"的函数 function cancelStyle(){ var value=confirm("确定移除所有的样式吗?"); if(value==true){ paragraph.removeAttribute('style'); } }