最新回答 / one_cats
//定义"取消设置"的函数 function reset(){ if(confirm("确认重置?")){ machar.className="txt"; } }//修改为function reset(){ var ceshi=confir("确认重置?"); if(ceshi){ machar.removeAttribute("style") //清除样式 }} //定义"改变宽高...
2016-09-08
最赞回答 / isTintin
var openw=confirm("是否在新窗口打开网站?");//将confirm语句赋值给一个变量 if(openw==true)//判断是否点击确定 { var webadress=prompt("请输入网址","http://www.imooc.com/"); // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ if(webadress!=null)//输入对话框确定打开网址 { window.open(webadre...
2016-09-07
最赞回答 / coolexe
function modify(){
var p2 = document.getElementById("p2");
if(p2.className=="one")
p2.className="two";
else
p2.className="one";
}
2016-09-07
最赞回答 / Mountain_
乱码是吗?<head>下面加一句,<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
2016-09-06