You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
786 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>iframe嵌入页面</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
background: #999;
}
</style>
</head>
<body>
<div>
<h3>我是iframe嵌入的子页面</h3>
<button id="btn">点击我</button>
</div>
</body>
</html>
<script>
onload = function () {
document.getElementById('btn').addEventListener('click', function () {
alert('子页面:你点击了按钮');
});
};
</script>