使用 jQuery 更改 Gmail 的 iframe 内容中的 CSS

发布于 2024-11-25 12:01:46 字数 333 浏览 1 评论 0原文

尝试将 Gmail 中的导航栏更改为其他颜色。我下面的内容是没有拾取 canvas_frame 即使我在查看源代码时可以看到它?

我做错了什么?

$(document).ready(function() {
  if ($("#canvas_frame").length) {
  $("#canvas_frame").load(function() {
     $("#canvas_frame").contents().find(".qp").css("background-color","#FF0000");
    });
  }
});

Trying to change the nav bar in Gmail to a different color. What I have below is not picking up the canvas_frame even though I can see it when I view the source?

What am I doing wrong?

$(document).ready(function() {
  if ($("#canvas_frame").length) {
  $("#canvas_frame").load(function() {
     $("#canvas_frame").contents().find(".qp").css("background-color","#FF0000");
    });
  }
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待圉鍢 2024-12-02 12:01:46

你的 Javascript 代码运行得怎么样?我可以按照以下步骤更改颜色 -

  • 打开 Firefox(安装了 Firebug)
  • 安装 jquerify bookmarklet (http://www.learningjquery.com/2009/04/better-stronger-safer-jquerify-bookmarklet)
  • 转到 GMail 并运行 小书签的颜色会发生变化 -

如果我在 Firebug 控制台窗口中运行以下代码,

jQuery("#canvas_frame").contents().find(".qp").css("background-color","#00ff00");

How are you running your Javascript code? I can change the colour by following these steps -

  • Open Firefox (with Firebug installed)
  • Install jquerify bookmarklet (http://www.learningjquery.com/2009/04/better-stronger-safer-jquerify-bookmarklet)
  • Go to GMail and run the bookmarklet

If I then run the following code in the Firebug console window the colour changes -

jQuery("#canvas_frame").contents().find(".qp").css("background-color","#00ff00");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文