You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
806 B
23 lines
806 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>page</title>
|
|
<script>
|
|
// 当文档加载完成后执行
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
// 为整个文档添加点击事件监听器
|
|
document.body.addEventListener('click', function(event) {
|
|
// 阻止事件冒泡
|
|
event.preventDefault();
|
|
// 跳转到第二个页面
|
|
window.location.href = 'log_in.html';
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<img src="E:/softwareengineer/work2/frontend/assets/d1.jpg" alt="描述性文字" style="width:100%; height:auto;">
|
|
</body>
|
|
</html> |