gpt4 book ai didi

javascript - 在页面上加载所有 iframe 的全部内容后不显示警报

转载 作者:行者123 更新时间:2023-11-30 15:43:16 25 4
gpt4 key购买 nike

<!DOCTYPE html>
<html lang="en">
<head>
<title>
</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/custom.css" />
</head>
<body>
<iframe width="400px" src="http://www.w3schools.com"></iframe>
<iframe width="400px" src="http://www.phpacademy.org"></iframe>
<iframe width="400px" src="http://www.jquery.com"></iframe>
<script type="text/javascript" src="js/jquery-3.1.1.min.js" ></script>
<script type="text/javascript" src="js/custom.js" ></script>
</body>
</html>

下面是custom.js中的代码

$(window).(on.('load', function () {
alert('All content loaded.');
}));

我希望在页面上加载所有三个 iframe 时显示警报。

最佳答案

你用于加载的语法是错误的,你应该使用

$(window).on.('load', function () {
alert('All content loaded.');
});

关于javascript - 在页面上加载所有 iframe 的全部内容后不显示警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40448401/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com