最新回答 / qq_慕圣8370306
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" Content="text/html; charset=utf-8" /><title>javascript</title><style type="text/css">body{font-size:12px;}#txt{ height:400px; width:600px; border:#3...
2020-11-20
最新回答 / 慕仔1114078
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> // 新窗口打开时弹出确认框,是否打开 function openWindow...
2020-11-20
<script type="text/javascript">
function openWindow(){
var a=confirm("是否打开网站");
if(a==true){
var b=prompt("请输入网址","http://www.imooc.com");
if(b!=null){ window.open('http://www.imooc.com','_black','width=600,height=400,top=200,left=0');}}
else{alert("有误"); } }
</script>
function openWindow(){
var a=confirm("是否打开网站");
if(a==true){
var b=prompt("请输入网址","http://www.imooc.com");
if(b!=null){ window.open('http://www.imooc.com','_black','width=600,height=400,top=200,left=0');}}
else{alert("有误"); } }
</script>