Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想构建一个 chrome 扩展,在加载时从页面中隐藏特定的 div(带 id)。
我想知道如何编辑源?
只需使用 jQuery,并在您的内容脚本中编写此代码:
$("#you_div_id").hide();
它是如此容易:)