扫码关注官方订阅号
Google 翻译JS脚本开头有这么一段:
d = document; b = d.body; o = d.createElement('scri' + 'pt');
为什么其中 d.createElement('scri'+'pt') 为什么要把 script 分开写呢?
d.createElement('scri'+'pt')
script
认证高级PHP讲师
这样写,代码中没有 script 这个单词,搜索引擎爬虫或者网页抓取者达不到目的。
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
这样写,代码中没有 script 这个单词,搜索引擎爬虫或者网页抓取者达不到目的。