【发布时间】:2023-03-10 08:06:01
【问题描述】:
我正在尝试获取名称为“titular_portada”的所有课程。
有很多,但由于某种原因不起作用:
<!DOCTYPE html>
<html lang="es">
<head>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<iframe src="https://vandal.elespanol.com" id="iframe" width="100%" height="100%"></iframe>
<script src="js/jquery-3.6.0.js"></script>
</body>
</html>
$(window).on("load", function() {
$("#iframe > .titulo_portada").each((i, el) => {
console.log(el);
});
});
【问题讨论】: