注意 家引号
window.open('http://www.imooc.com','_blank','width=300,height=200,menubar=no,toolbar=no, status=no,scrollbars=yes')
window.open('http://www.imooc.com','_blank','width=300,height=200,menubar=no,toolbar=no, status=no,scrollbars=yes')
2016-03-03
mychar.style.color="red";
mychar.style.backgroundColor="#ccc";
mychar.style.width="300px";
mychar.style.backgroundColor="#ccc";
mychar.style.width="300px";
2016-03-03
//通过两个按钮调用
<from>
<input type="button" value="open Window" onclick="opWin()"/>
<input type="button" value="close Winbdo" onclick="cloWin()/>
</from>
<from>
<input type="button" value="open Window" onclick="opWin()"/>
<input type="button" value="close Winbdo" onclick="cloWin()/>
</from>
2016-03-03
var mywin;
function opWin(){//打开窗口的方法
mywin=window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0');
}
function cloWin(){//关闭窗口的方法
mywin.close();
}
function opWin(){//打开窗口的方法
mywin=window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0');
}
function cloWin(){//关闭窗口的方法
mywin.close();
}
2016-03-03