所以,我不知道为什么noscript
内的任何代码,例如:
<noscript>
<iframe ...></iframe>
</noscript>
...一旦被DOM插入,将被解释,例如:
<noscript>
"<iframe ...></iframe>" // the <iframe /> is escaped and treated like text
</noscript>
有人知道为什么吗?
答案 0 :(得分:1)
启用JavaScript时,所有noscript
内容均被转义。尝试使用<strong>
标签,您将看到相同的内容。但是,禁用javascript后,它会按预期工作。