已采纳回答 / 幕布斯5468980
function openWindow(){ var message = confirm('是否打开新窗口?'); if(message==true){ var address = prompt('请输入你的地址','http://www.imooc.com/'); window.open(address,'_blank','width=400,height=500,menubar=no,toolbar=no'); }e...
2019-12-10
已采纳回答 / weixin_慕仔7034253
这里的var dis = document.getElementById("op").style.display="none";var dis = document.getElementById("op").style.display="block";需要分开,因为写在一起相当于直接赋值为空,自然就没办法隐藏了。var dis = document.getElementById("op");dis.style.display="none";var dis = document.getElementById...
2019-12-09
最赞回答 / 慕瓜0474345
参考其他课程下同样的回答:https://www.imooc.com/qadetail/156795removeAttribute("style")清除的样式只是清除了使用"style"属性设置的CSS样式,原有的样式是通过className来设置的,如果需要清除原来用className设置的样式(即在style列表中使用的各种class),需要使用:removeAtrribute("className")或者是:removeAttribute("id")比如:var myElem=getElementB...
2019-12-05
function openWindow(){
var fff = confirm("是否打开");
if(fff == true){
var url = prompt("请输入你的网址");{
if(url!= null){
window.open('http://www.imooc.com','_blank','width:600.height:400,top:100,left:0') } }
}else{
alert("你没有打开任何东西");
}}
var fff = confirm("是否打开");
if(fff == true){
var url = prompt("请输入你的网址");{
if(url!= null){
window.open('http://www.imooc.com','_blank','width:600.height:400,top:100,left:0') } }
}else{
alert("你没有打开任何东西");
}}
function openWindow(){
var my=confirm("是否打开页面:");
if(my==true)
{
window.open("http://www.imooc.com","_blank","width=400,height=500,menubar=no,toolbar=no");
}}
var my=confirm("是否打开页面:");
if(my==true)
{
window.open("http://www.imooc.com","_blank","width=400,height=500,menubar=no,toolbar=no");
}}