我看到在https://itunesconnect.apple.com登錄頁面怪腳本:IE和奇怪的評論行爲:爲什麼要爲IE打開兩次評論?
<script>
//Some js
<!--
if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
//--></script>
<noscript>Some text<noscript>
據我瞭解,IE瀏覽器是這樣的:
<script>
//Some js
<!--
<!--
//--></script>
<noscript>Some text<noscript>
,並對其他人來說是這樣的:
<script>
//Some js
<!--
//--></script>
<noscript>Some text<noscript>
但是目的是什麼? (這個問題是關於雙「<! - - 」而不是noscript標籤) 爲什麼在IE的腳本標籤中打開兩次HTML註釋?
這可能值得您閱讀:https://developer.mozilla.org/en/docs/Web/HTML/Element/noscript –
對不起,我應該指定問題不是關於該標記。 (但也許這個標籤是相關的,) – Tom
'%3c' - >'<'... –