html – 在iframe srcdoc值中转义引号

html – 在iframe srcdoc值中转义引号,第1张

概述根据 spec的报价必须转义,即代替: <iframe seamless sandbox srcdoc="<p>Yeah, you can see it <a href="/gallery?mode=cover&page=1">in my gallery</a>."></iframe> 我们应该使用: <iframe seamless sandbox srcdoc="<p>Yeah, yo 根据 spec的报价必须转义,即代替:
<iframe seamless sandBox srcdoc="<p>Yeah,you can see it <a href="/gallery?mode=cover&amp;page=1">in my gallery</a>."></iframe>

我们应该使用:

<iframe seamless sandBox srcdoc="<p>Yeah,you can see it <a href=&quot;/gallery?mode=cover&amp;amp;page=1&quot;>in my gallery</a>."></iframe>

但是在上面的例子中简单地使用单引号是不行的:

<iframe seamless sandBox srcdoc="<p>Yeah,you can see it <a href='/gallery?mode=cover&amp;page=1'>in my gallery</a>."></iframe>
解决方法 您链接的规范仅注意到引号被转义,因为

otherwise the srcdoc attribute would end prematurely.

使用单引号没有问题,如上一个例子所示.

如果价值中有单引号(例如,“你是”),那么你必须逃避任何一个或另一个.

总结

以上是内存溢出为你收集整理的html – 在iframe srcdoc值中转义引号全部内容,希望文章能够帮你解决html – 在iframe srcdoc值中转义引号所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1142219.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存