我一直在这里(和其他地方)检查问题和答案,但没有得到明确的答案:如果禁用 javascript,以下 html 是否有任何缺点来显示备用图像?
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js"> </script>
<script src="path to local js script here"></script>
<noscript><a href="URL here" target="_blank"><img src="path to alt image here" /> </a></noscript>
<link rel="stylesheet" type="text/css" href="path to css here">
</head>
<body>
...
</body>
</html>
这似乎对我有用,但我看到了更复杂的解决方案;以这种方式制作替代图像有什么“错误”吗?