编写一个HTML页面,运用JavaScript代码使得页面下载时出现一个警告框
发布网友
发布时间:2022-04-25 00:07
我来回答
共3个回答
热心网友
时间:2022-04-25 01:36
<html>
<head>
<script type="text/javascript">
alert("警告内容");
</script>
</head>
<body>
</body>
<html>
热心网友
时间:2022-04-25 02:54
<html>
<head>
<script ----->
function down()
{
alert("警告内容");
}
</script>
</head>
<body>
<a href="#" onclick="down()">下载</a>
</body>
<html>
不全的地方自己补全
热心网友
时间:2022-04-25 04:29
<html>
<head><title>my html</title>
<script type="text/javascript">
function afterLoad(){
alert('你已下载完本页!');
}
</script>
</head>
<body onload="afterLoad()">
my html.
</body>
</html>