1在html中嵌入javascript:<script style="text/javascript></script>
2015-07-17
1.document.write();
2.document.getElementById('p').style.color="blue";
2.document.getElementById('p').style.color="blue";
2015-07-17
<script type="text/javascript">
document.write("hello");
document.getElementById("p1").style.color="blue";
document.getElementById("p2").style.background="red";
document.getElementById("p3").style.border="2px dashed red";
</script>
document.write("hello");
document.getElementById("p1").style.color="blue";
document.getElementById("p2").style.background="red";
document.getElementById("p3").style.border="2px dashed red";
</script>
2015-07-17
function openWindow()
{
var b=confirm("是否打开");
if(b==true){
var a=prompt("请输入网址","http://www.imooc.com/");
if(a=="http://www.imooc.com/")
{
window.open('_blank','width=400px''height=500px''toolbar=no''menubar=no')
}
}
}
{
var b=confirm("是否打开");
if(b==true){
var a=prompt("请输入网址","http://www.imooc.com/");
if(a=="http://www.imooc.com/")
{
window.open('_blank','width=400px''height=500px''toolbar=no''menubar=no')
}
}
}