使用 jQuery 更改 Gmail 的 iframe 内容中的 CSS
尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的 Javascript 代码运行得怎么样?我可以按照以下步骤更改颜色 -
如果我在 Firebug 控制台窗口中运行以下代码,
How are you running your Javascript code? I can change the colour by following these steps -
If I then run the following code in the Firebug console window the colour changes -