我正在尝试从http://www.wowhead.com/hearthstone/tooltips获取工具提示以在我的网站上工作,但它不起作用所以我尝试了W3C验证器以获得答案,我收到以下错误:
错误第88行,第84列:错误开始标记脚本。 ... // static.wowhead.com / widgets / power.js“> var wowhead_tooltips = ...
这是我的代码:
<script type="text/javascript" src="http://static.wowhead.com/widgets/power.js"> </script>
<script> var wowhead_tooltips = { "colorlinks": true, "iconizelinks": true, "renamelinks": true } </script>
它位于<html>
和<head>
标记内。
答案 0 :(得分:101)
当你在</body>
之外的某些地方时,验证者会给出错误。
只需在<body>
内移动您的脚本标记,或将其保留在<head>
中。