function openWindow (){
confirm("是否打开新的窗口") == true ? window.open("http://" + prompt('请输入网址', 'www.imooc.com'), '_blank','width=400,height=500,menuber=no.toolbar=no') : null;
}
confirm("是否打开新的窗口") == true ? window.open("http://" + prompt('请输入网址', 'www.imooc.com'), '_blank','width=400,height=500,menuber=no.toolbar=no') : null;
}
function openWindow(){
var tip=confirm("是否打开新网址?");
if(tip==true){var wangzhi=prompt("请编辑您要打开的网址","http://www.imooc.com");
if(wangzhi!=null){window.open(wangzhi,"_blank",'width=400,height=400')
}
else{alert("您未确认打开新网址"); }
}
else{alert("您未确认打开新网址");
}
}
var tip=confirm("是否打开新网址?");
if(tip==true){var wangzhi=prompt("请编辑您要打开的网址","http://www.imooc.com");
if(wangzhi!=null){window.open(wangzhi,"_blank",'width=400,height=400')
}
else{alert("您未确认打开新网址"); }
}
else{alert("您未确认打开新网址");
}
}
<script type="text/javascript">
function add(){
var p1 = document.getElementById("p1");
p1.className="one";
}
function modify(){
var p2 = document.getElementById("p2");
p2.className="two";
}
function add(){
var p1 = document.getElementById("p1");
p1.className="one";
}
function modify(){
var p2 = document.getElementById("p2");
p2.className="two";
}
2020-06-04
var mychar= document.getElementById("con");
mychar.style.color="white";
mychar.style.backgroundColor ="black";
mychar.style.width="1000px";
mychar.style.color="white";
mychar.style.backgroundColor ="black";
mychar.style.width="1000px";
2020-06-04
function openWindow(){
var mymessage=confirm("是否打开新窗口?");// 新窗口打开时弹出确认框,是否打开
if(mymessage==true)
{
window.open('http://www.imooc.com','_blank','width=400,height=500,top=100,left=0,menubar=no,toolbar=no');
}
else
{
alert("滚犊子!");
}
}
var mymessage=confirm("是否打开新窗口?");// 新窗口打开时弹出确认框,是否打开
if(mymessage==true)
{
window.open('http://www.imooc.com','_blank','width=400,height=500,top=100,left=0,menubar=no,toolbar=no');
}
else
{
alert("滚犊子!");
}
}