<script type="text/javascript">
var mychar=document.getElementById("con");
document.write("原标题:"+mychar.innerHTML+"<br>"); //输出原h2标签内容
mychar.innerHTML="Hello world!";
document.write("修改后的标题:"+mychar.innerHTML); //输出修改后h2标签内容
</script>
var mychar=document.getElementById("con");
document.write("原标题:"+mychar.innerHTML+"<br>"); //输出原h2标签内容
mychar.innerHTML="Hello world!";
document.write("修改后的标题:"+mychar.innerHTML); //输出修改后h2标签内容
</script>
2019-10-18
function openWindow()
var mymessage = confirm('是否打开网页');
if (mymessage == true){
window.open('http://www.imooc.com','_blank','width=400,height=500,toolbar=no,menubar=no')
};
var mymessage = confirm('是否打开网页');
if (mymessage == true){
window.open('http://www.imooc.com','_blank','width=400,height=500,toolbar=no,menubar=no')
};
已采纳回答 / 慕仰1008517
窗口应该是被浏览器拦截了,取消拦截再运行就可以显示。或者去掉后面的宽高,就不会被浏览器拦截了。因为当设置_self属性时,再设置宽和高是不管用的,这个宽高会继承父窗口的宽高。
2019-10-17
最赞回答 / Dust丿星辰
<!DOCTYPE html><html> <head><script type="text/javascript"> function openWindow(){ if(confirm("请确认打开窗口"))//confirm的返回值是一个bool量,故可以直接写在if条件里 { window.open( prompt("请确认网址","http://www.imooc.com/"),'_blank','width=400,height=500...
2019-10-16
最新回答 / Miu69
可以将每个函数中变量的定义取出来,直接在<script>下面一行定义一个总变量(如:var mycon=document.getElementById("con");)
2019-10-15
function openWindow(){
var message=confirm("是否确认打开页面");
if(message==true{
var h=prompt("请输入你的网址","http://www.imooc.com/") window,open(h,'_blank','width=400,height=500,toolbar=no,menubar=no')}
else
{
alert("goodbye" }
}
var message=confirm("是否确认打开页面");
if(message==true{
var h=prompt("请输入你的网址","http://www.imooc.com/") window,open(h,'_blank','width=400,height=500,toolbar=no,menubar=no')}
else
{
alert("goodbye" }
}
<script type="text/javascript">
function openWindow()
{var a=confirm("FBI Warning");
if(a==true)
{
var b=prompt("确定???","http://www.imooc.com/")
window.open(b,'_blank','width=400px,height=500px,toolbar=no,menubar=no')
}
else
{null; }
</script>
function openWindow()
{var a=confirm("FBI Warning");
if(a==true)
{
var b=prompt("确定???","http://www.imooc.com/")
window.open(b,'_blank','width=400px,height=500px,toolbar=no,menubar=no')
}
else
{null; }
</script>