我在一个具有相同类名的页面上有一组div。
<div class="ProductName">Product Foo</div>
<div class="ProductName">Product Bar</div>
我希望能够检索,迭代并且这种情况提醒ProductName div的内容。
目前我可以检索和迭代,但我无法提醒个别内容。
var ExistingProductNamesOnscreen = $.makeArray($(".ProductName"));
$.each(ExistingProductNamesOnscreen, function (key, val) {
alert(*ProductName contents*);
});
答案 0 :(得分:4)
$(".ProductName").each(function(k, v) {
alert($(v).text());
});
答案 1 :(得分:1)
$(".ProductName").each(function ()
{
alert($(this).text());
});
答案 2 :(得分:0)
alert ($(this).text());
或
alert ($(this).html());
(第一个应该提醒text
内容,而后者也应该找到特定div
中的任何标签