使用带有javascript的tag-> id->元素获取嵌套元素

时间:2015-02-26 07:37:33

标签: javascript html

document.getElement(div#menuArea).getElements(a)

我想从div获取身份"menuArea"的所有元素。我认为上面的语法是错误的。有人能指出我正确的方向吗?

2 个答案:

答案 0 :(得分:9)

试试这个

document.getElementById('menuArea').getElementsByTagName('a')

或IE8 +

document.querySelectorAll('#menuArea a')

答案 1 :(得分:1)

或者你可以试试jQuery:

$('#'menuArea a');

关于课程,试试这个:

var d = document.getElementById('menuArea').getElementsByTagName('a')
d.className = d.className + " otherclass";

这是纯JavaScript。