-3

// 这行有效:

var remove = jQuery(this).closest('.item').hide();

// 为什么这行代码不能在同一个脚本中运行几行?

var discount_amount = jQuery(this).closest('.discount_amount').text();

我只是想用 .discount_amount 类获取最接近的 div 的值并将其分配给变量:-/我在这里遗漏了什么吗?

文件在这里: http ://www.extremecouponnetwork.com/templates/ja_wall/js/clip.js

此处的 HTML:

<a class="clip_it" href="javascript:void(0)" onclick="jfbc.opengraph.triggerAction('1','http://www.extremecouponnetwork.com<?php echo $this->item->link; ?>')  "><img src="/templates/ja_wall/images/scissors_add.png" /><span>Clip It</span></a>
    <img src="/templates/ja_wall/images/animated_scissors.gif" class="ToBeAnimated">

    <br />
    <div class="discount_amount" style="display:  !important;"><?php echo $this->item->extraFields->DiscountAmount->value; ?></div>
    <div class="percent_off" style="display:  !important;"><?php echo $this->item->extraFields->PercentOff->value; ?></div>
    <div class="brand_avg_sale" style="display:  !important;"><?php echo $this->item->extraFields->BrandAvgSale->value; ?></div>
4

1 回答 1

0

正如您在评论中所说,假设这些元素是兄弟姐妹,那么我建议:

var discount_amount = jQuery(this).siblings('.discount_amount').text();

这不考虑邻近性,它只会获取与传递给方法的选择器字符串匹配的第一个元素的文本。siblings()

于 2013-02-16T21:46:34.077 回答