2015-01-08 59 views
0

我將在某些li標籤中獲取某些h1標籤的內容。 我做了一些簡單的小提琴,但它不適合我。獲得索引中h1的內容

我想要的是腳本提醒「這是兩個」。

JS:

$index = 1; 

$item = $('ul').children('li').eq($index); 
$itemname = $item("h1").text(); 
alert($itemname); 

HTML:

<ul> 
    <li>this is one</li> 
    <li>hello 
     <h1>this is two</h1> 
    </li> 
    <li>this is three</li> 
</ul> 

誰能幫助我?

Here is the fiddle

回答

1

$item是一個jQuery對象,而不是一個功能,你可能想使用find()

$itemname = $item.find("h1").text(); 

FIDDLE

+0

Thanx,這是正確的答案! – Arno