我基本上試圖完成主題所暗示的內容,但我的警報中出現「未定義」,我不完全確定原因。我對jQuery相當陌生,所以,我可能有語法錯誤,但不知道從哪裏去。我會後我的兩個嘗試,其產量都在警報「未定義」 ......獲取一個id元素的子元素並存儲在一個變量使用jQuery的?
//In my first attempt, I'm trying to get the id of the inner a tag
<ul>
<li id="l1" class="active"><a href="#c1">Samp 1</a></li>
<li id="l2" class=""><a href="#c2">Samp 2</a></li>
<li id="l3" class=""><a href="#c3">Samp 3</a></li>
</ul>
var selected = $(".active).children("a").attr("id");
alert(selected);
//In my second attempt, I'm trying to get the id of the currently selected li
var selected = $(".active").attr("id");
alert(selected);
你缺少雙引號。 – 2017-01-04 13:02:58