最新回答 / qq_慕姐7305722
function changeColor(){ txt.style.color="yellow"; txt.style.background="blue";这写错了,应该是txt.style.backgroundColor}
2019-02-08
最新回答 / 慕桂英3007397
function openWindow(){ var queren=confirm("真的要打开,大人的世界吗"); if(queren==true) { var shuru=prompt("你真的已经满18岁了吗","http://www.imooc.com"); if(shuru!=null) { window.open(shuru,"_blank",'width=400px,height=500px,menubar=n...
2019-02-07
最新回答 / 努力
function qxsz(){ var mychar=confirm("是否取消设置?") if(mychar==true){ mychar.removeAttribute("style"); } else {alert("输入错误")}}这错了,这里的函数只是这个确认框的函数而不是你要改变的函数
2019-01-31
最新回答 / 小杰0020
function openWindow(){var reply =confirm("是否打开");if(reply==true){var url = prompt("输入要打开的网站","http://www.imooc.com/");if(url=="http://www.imooc.com/"){window.open(url,'_blank','width=400,height=500,menubar=no,toolbar=no');}else if(url == "" || url == null...
2019-01-30