我感覺很愚蠢的問這個問題,但我不能想出一個乾淨的方式來寫這個...鏈接點擊功能重定向到HREF
繼承人的HTML
<li>
<a class='link_parent' href='#'>Test</a>
</li>
我希望父李的點擊功能重定向與.link_parent的一個的href ...
所以......
$('a.link_parent').each(function() {
$(this).parent().click(function() {
// Need to access $(this).attr('href') of the above object
// but can't since $(this) is now the <li> object
// help!
});
});