当 JavaScript 被禁用时,我需要为桌面和移动网站显示不同的消息。
目前我有
<noscript>
<meta http-equiv="Refresh" content="0; URL=/error.html" />
</noscript>
我需要可以做的代码(我使用伪代码)
<noscript>
if desktop
<meta http-equiv="Refresh" content="0; URL=/error.html" />
if mobile
<meta http-equiv="Refresh" content="0; URL=/mobile-error.html" />
</noscript>
谢谢