标签: javascript google-chrome google-chrome-extension
例如:
<div id="d">ss</d>
如何通过ID获取div?
答案 0 :(得分:1)
在编写Chrome扩展程序时,您应该使用contentWindow变量访问该网页。
contentWindow.document.getElementById("d");
答案 1 :(得分:0)
使用以下声明:
document.getElementById('d');