如果可能,我想在没有 documentGetElementById 的情况下更改显示,但以下内容不起作用。html
<a href="javascript:void();" onclick="toggleFaq('1')">Instructions</a><div id="showfaq1" style="display:none;">Open Box. Remove device. </div>
javascript:
function toggleFaq(faqid) {
//alert(faqid);
var divname = "showfaq"+faqid;
//alert(divname);
divname.style.display="block";
}
谁能告诉我我做错了什么?
谢谢你。