function openWindow()
{
var qd=confirm("确认弹出新窗口?")
if (qd==true)
{var pt=prompt("请输入您想打开的窗口。","http://www.imooc.com")
window.open(pt,'_blank','width=400','height=500','menubar=no','toolbar=no')}
}
{
var qd=confirm("确认弹出新窗口?")
if (qd==true)
{var pt=prompt("请输入您想打开的窗口。","http://www.imooc.com")
window.open(pt,'_blank','width=400','height=500','menubar=no','toolbar=no')}
}
function openWindow(){
var myconfirm = confirm("确定打开新窗口吗?");
if(myconfirm==true)
{
var address ;
address = prompt("请输入网址:","http://www.imooc.com/");
window.open(address,'_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
var myconfirm = confirm("确定打开新窗口吗?");
if(myconfirm==true)
{
var address ;
address = prompt("请输入网址:","http://www.imooc.com/");
window.open(address,'_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
var mychar= document.getElementById("con");
mychar.style.color="red";
mychar.style.backgroundColor="grey";
mychar.style.width="300px";
mychar.style.color="red";
mychar.style.backgroundColor="grey";
mychar.style.width="300px";
2015-07-24