鉴于以下内容......
<!DOCTYPE html>
<html class="no-js">
<head>
<link rel="stylesheet" href="http://127.0.0.1:4000/css/story.css">
<script>
console.log('wtf do you want from me, Chrome?');
</script>
</head>
<body>
....
</body>
...为什么Google Chrome开发工具审核会告诉我:
1 inline script block was found in the head between an external CSS file
and another resource. To allow parallel downloading, move the inline
script before the external CSS file, or after the next resource.
我发现this answer这似乎是合理的,除了在我的情况下没有注入javascript。以上内容直接从Chrome开发者控制台上的元素选项卡中复制,而不是从页面源复制。
那就是我所拥有的一切。一个<link>
代码和一个<script>
代码。我删除了<script>
代码,通知未显示在审核中。我把它放回去,我收到通知。
Chrome是否告诉我javascript应该放在页面底部?还有别的吗?
小点红点拒绝离开让我有点疯狂。
答案 0 :(得分:1)
我删除了
<script>
代码,通知未显示在审核中。一世 把它放回去,我收到通知小点红点拒绝离开让我有点疯狂。
尝试在<script>
之前放置<link>
,然后运行Audit