第十章 课后习题

1.在网页中显示一个工作中的“数字时钟”。

参考代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>动态时钟</title>
	<style>
		.all{
			width: 600px;
			height: 300px;
			margin: 100px auto;
			text-align: center;
			font-size: 50px;
		}
		#clock{
			margin-top: 50px;
			margin-left: 100px;
			width: 400px;
			height: 100px;
			font-size: 100px;
			text-align: center;
			font: bold;
			color: black;
		}
		.text{
			font-size: 30px;
			font-weight: bold;
		}
	</style>
	<script type="text/javascript">
			function showTime(clock){
				var now = new Date();
				var hour = now.getHours();
				var minu = now.getMinutes();
				var second = now.getSeconds();
				var time =hour+":"+minu+":"+second;
				clock.innerHTML=time;
			}
			window.onload = function(){
				var clock = document.getElementById("clock");
				window.setInterval("showTime(clock)",1000);
			  
			}
			</script>
	</head>
	<body>
		<div class="all">
			<p>数字时钟</p >
			<div id ="clock"></div>
		</div>	
	</body>
</html>

2.制作一个“禁止使用鼠标右键”操作的网页。当浏览者在页面上右击时,自动弹出一个警告对话框,禁止用户使用右键快捷菜单。

参考代码:

  1. <!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>禁止下载</title>
    		<style>
    			img{
    				width: 600px;
    				height: 400px;
    				margin-left: 200px;
    			}
    		</style>
    	</head>
    	<body>
    		<p id="img">
    			<img src="img/cat.jpg" />
    		</p >
    		<script type="text/javascript">
    			var demo=document.getElementById("img");
    			demo.oncontextmenu=a;
    			function a(){
    				alert("禁止下载图片!");
    			}
    			document.addEventListener('contextmenu',function(b){
    				b.preventDefault();  //阻止上下文菜单
    			});
    		</script>
    	</body>
    </html>

    浏览效果如图:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值