gpt4 book ai didi

javascript - 我想提醒所有 p 元素的文本(基本 jquery)

转载 作者:行者123 更新时间:2023-11-28 11:05:43 24 4
gpt4 key购买 nike

我正在学习 JQuery。正如我所看到的,我是一名新的 Jquery 学生。

这是我的 html 页面:

<html>
<head>
<title>Jquery 1</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$("document").ready(function(){
var num = 0;
$("p").each(function(){
var data = data + $(this:eq(num)).html();
num =+1;
});
alert(data);
});
</script>
</head>
<body>
<p>
Deneme
</p>
<p>
Deneme2
</p>
</body>
</html>

我想提醒所有 p 元素的文本。这段代码不起作用..我该怎么办?

最佳答案

将代码更改为:

$("document").ready(function(){
var data = "";
$("p").each(function(index, element) { // note that the .each() handler has two parameters that can be used also
data += $(this).html(); // "this" inside the .each() handler function is the current DOM element in the iteration
});
alert(data);
});

.each() 处理函数内,this 值是迭代中的当前 DOM 元素。此外,.each() 处理程序有两个也可以使用的参数。 index 是迭代中的位置(从 0 到 length-1),element 是当前 DOM 元素(与 this 的值相同) .

您可以阅读有关 .each() here 的更多信息.

关于javascript - 我想提醒所有 p 元素的文本(基本 jquery),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7419966/

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