window.open('http://www.imooc.com','_blank','winth=600,height=400,top=100,left=0')
2018-07-15
function openWindow(){
var choose = confirm("open?");
if(choose==true)
{
var net = prompt("please input the net:","http://www.imooc.com/");
if(net!=null)
window.open(net,'','width=400,height=500,menubar=no,toolbar=no');
}
}
var choose = confirm("open?");
if(choose==true)
{
var net = prompt("please input the net:","http://www.imooc.com/");
if(net!=null)
window.open(net,'','width=400,height=500,menubar=no,toolbar=no');
}
}
function add(){
var p1 = document.getElementById("p1");
p1.className="one";
}
function modify(){
var p2 = document.getElementById("p2");
p2.className="two";
}
var p1 = document.getElementById("p1");
p1.className="one";
}
function modify(){
var p2 = document.getElementById("p2");
p2.className="two";
}
2018-07-13