从父元素获取产品名称

时间:2014-04-19 21:33:29

标签: javascript jquery html

这里我试图在"立即购买"单击按钮。此外,我需要维护按钮的onclick事件,我已将代码放在jquery中。

<h2 class="product-name"><a href="product1.php" title="Sample Product Name">Sample Product Name</a></h2>

http://jsfiddle.net/LkKbz/

我做的方法是给我空白警告框可能是因为我正在调用父元素。请帮忙

请注意,点击产品名称或图片时,我不想要提醒。只想按下按钮

2 个答案:

答案 0 :(得分:4)

改变这个:

var text = $(this).parents(".item").find('.product-name').text();  

答案 1 :(得分:0)

这里是答案

var text = $(this).parents('li').first().find('.product-name').text();

http://jsfiddle.net/LkKbz/1/