为何这段代码在360下不起作用?弹出个确认框后并未执行判断语句
//定义"取消设置"的函数
var change=document.getElementById("txt");
function chback(){
var chsure=confirm("是否恢复原始值?");
if(chsure==true)
{
change.removeAttribute("style");
}
else
{
document.write("恢复不了!");
}
}
为何这段代码在360下不起作用?弹出个确认框后并未执行判断语句
//定义"取消设置"的函数
var change=document.getElementById("txt");
function chback(){
var chsure=confirm("是否恢复原始值?");
if(chsure==true)
{
change.removeAttribute("style");
}
else
{
document.write("恢复不了!");
}
}
2014-09-12
举报