martin111
2016-04-28 00:08
function five () { var mychar3=confirm("确定要取消设置吗?"); if (true) { var mychar=document.getElementById('txt') mychar.removeAttribute('style') };
用emoveAttribute就可以了,
function cancle()
{
var str=confirm("你确定要取消修改设置吗");
if(str)
document.getElementById("txt").removeAttribute("style")
quxiao:function()
{
var message=confirm("确认取消设置?");
if(message==true)
{
txt.removeAttribute('style');
}
}
JavaScript入门篇
739818 学习 · 9566 问题
相似问题