Why split the lt;scriptgt; tag when writing it with document.write()?(为什么要拆分 lt;scriptgt;用 document.write() 编写时标记?)
本文介绍了为什么要拆分 <script>用 document.write() 编写时标记?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么某些网站(或向客户提供 javascript 代码的广告商)采用将 <script>
和/或 </script>
标记拆分的技术在 document.write()
调用中?
Why do some sites (or advertisers that give clients javascript code) employ a technique of splitting the <script>
and/or </script>
tags up within document.write()
calls?
我注意到亚马逊也这样做,例如:
I noticed that Amazon does this as well, for example:
<script type='text/javascript'>
if (typeof window['jQuery'] == 'undefined') document.write('<scr'+'ipt type="text/javascript" src="aHR0cDovL3otZWN4LmltYWdlcy1hbWF6b24uY29tL2ltYWdlcy9HLzAxL2phdmFzY3JpcHRzL2xpYi9qcXVlcnkvanF1ZXJ5LTEuMi42LnBhY2suX1YyNjUxMTM1NjdfLmpz"></sc'+'ript>');
</script>
推荐答案
</script>
必须分解,否则会结束封闭的
沃梦达教程
本文标题为:为什么要拆分 <script>用 document.write() 编写时标记?
猜你喜欢
- 从原点悬停时触发 translateY() 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01