Wordpress - style.css似乎没有在Chrome上更新

时间:2017-02-02 17:03:40

标签: javascript html css wordpress google-chrome

每当我在Wordpress中更新我的public static IEnumerable<T> GetUniqueFlags<T>(this Enum flags) { if (!typeof(T).IsEnum) throw new ArgumentException("The generic type parameter must be an Enum."); if (flags.GetType() != typeof(T)) throw new ArgumentException("The generic type parameter does not match the target type."); ulong flag = 1; foreach (var value in Enum.GetValues(flags.GetType()).Cast<T>()) { ulong bits = Convert.ToUInt64(value); while (flag < bits) { flag <<= 1; } if (flag == bits && flags.HasFlag(value as Enum)) { yield return value; } } } 文件,然后更新文件,我就能看到Firefox或Safari中的更改,但从未在Chrome中看到,因为出于某种原因,Chrome有一个旧的样式表。

我尝试重新启动Chrome,然后执行Ctrl + Shift + R并删除缓存,但出于某种原因,我一直有一张图片没有显示,但在Safari上它显示正常。

对于想要测试的人:网站为https://newblueprint.staging.wpengine.com/并向下滚动并找到“我们的广告系列”标题。黄色背景应该有一个图像,它显示在Safari和Firefox中,但不会显示在Chrome中。

2 个答案:

答案 0 :(得分:3)

实际上chrome的显示是正确的。此图片不存在:

https://newblueprint.staging.wpengine.com/wp-content/themes/Blueprint/images/habit-burger-logo.jpg

我相信你的其他浏览器已经缓存了该图像,而chrome正确地没有显示它。

修改

我同意hungerstar,图片必须被破坏。毕竟,页面不会返回[0, 2*Math.PI],而是返回损坏的图像对象。

编辑2:

以崇高的方式打开图像,这是实际问题:

enter image description here

您的图片实际上是404,您要么重命名为.psd而不是正确转换,要么直接尝试将.jpg加载到网页中。

答案 1 :(得分:0)

这是图像的链接 https://newblueprint.staging.wpengine.com/wp-content/themes/Blueprint/images/habit-burger-logo.jpg

这是其他图片的链接: https://newblueprint.staging.wpengine.com/wp-content/themes/Blueprint/images/Coca-Cola_logo_white.png

你看到了区别吗?我用当前的coco可乐图像替换了当前图像(使用chrome检查工具)来检查css是否有问题,但是没有。很简单。您需要使用其他图片enter image description here

enter image description here