The first JavaScript code
标签:
JavaScript
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
// 新窗口打开时弹出确认框,是否打开
var ifWindow = confirm("Do u want creat a new window?");
if(ifWindow){
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
var url = prompt("Please input the URL","http://www.imooc.com");
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
document.write(URL);
window.open(url,"_blank","width=400px height=50px menubar=no toolbar=no");
}else{
alert( "OK I See.");
}
}
</script>
</head>
<body> 输入代码
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦