这是我的HTML代码
<li id="liButton_1" tabindex="2" class="activeli">
<a onclick="ShowVideo('1');">
<img id="ImageButton_1" title="Sister Teresa's Talk (Malayalam)" alt="Sister Teresa"
s="" talk="" (malayalam)
'="" src="http://www.braddockinfotech.com/demo/dvnonline/vod/timthumb/timthumb.php?src=wp-content/uploads/2012/11/Sr.-Teresa.jpg&h=54&w=109&zc=1&a=c" class="active"></a></li>
好的,当选择li
时,会像document.activeElement
一样访问它。
如何使用document.activeElement选择id
中img
的{{1}}。(某些内容)
答案 0 :(得分:0)
如果你将li引用作为活动元素
var activeEle = document.activeElement;
var imageID = activeEle.getElementsByTagName("img")[0].getAttribute("id");
答案 1 :(得分:0)
使用jQuery非常简单
$("#liButton_1").click(function(){
var img_id = $("#liButton_1 a img").attr('id');
});
未经测试但希望可行