是否有任何替代解决方案(在 JavaScript 中)document.getElementById();
来选择特定元素,同时指定 class 和 id ?
例如我有这样一个内容:
<a class="q_href" onclick="showQuestion(1)">Question 1:</a>
<div class="q_content" id="1"></div>
<a class="q_href" onclick="showQuestion(2)">Question 2:</a>
<div class="q_content" id="2"></div>
而我想在函数中的“问题X”链接下选择对应的div
function showQuestion(id)
{
var thediv = GetByClassAndId("q_content",id); // how to implement this function ?
WriteQuestionIn(thediv); //Ajax
}
提前致谢。