最近在使用 phphub 二次开发自己的小社区。 发现了一个问题,无法解决。
当点击 a 标签的超链接,新的页面 js 是没有加载的。会在 head 标签内部显示成
script type="undefined" src="https://dn-phphub.qbox.me/assets/js/scripts-6484ddb8.js"></script
当你刷新后 该 js 就会正确的出现在 body 标签中。
一直以为是自己新作的页面导致的问题。 现在发现官网也是这样 。求大神们给我说说 这是什么原理。
图 1 为点击超链接效果 图 2 为刷新后的效果
不知道 哪位小伙伴遇到过。希望能够给点提点。让我找到解决的办法。
1
fcode520 OP 测试网站 http://t.apcow.com/ 随便点击一个超链接。然后 F12 看 head 中 就会出现 type 是 undefined 的 js 文件。
|
2
lijsh 2016-02-29 22:21:17 +08:00
这不是全站 ajax 吗?那个 script 是一开始加载的,后面点链接页面没真正跳转, script 也只是换了个位置,然后把 ajax 拿回来的响应渲染页面了。
至于为啥改成 undefined ,我也不懂。 |
3
xqin 2016-03-01 10:18:01 +08:00
网站的 JS 代码里有一段这样的代码, 用于遍历页面中的 JS, 然后 重新加入到页面中.
在设置 `type` 的时候, 是使用的 `t(this).attr('type')` 这里的 t 是 jQuery, 用于获取 script 标签的 type 属性, 而因为源代码中 script 标签没有写 type 属性, 所以得到的是 undefined, 所以导致 动态 插入进去的 script 标签中 type 值为 undefined. ``` function v(e) { if (e) { var n = t("script[src]"); e.each(function() { var e = this.src , i = n.filter(function() { return this.src === e } ); if (!i.length) { var r = document.createElement("script"); r.type = t(this).attr("type"), r.src = t(this).attr("src"), document.head.appendChild(r) } } ) } } ``` |
4
Aaronsx 2016-03-01 17:04:15 +08:00
还会吗
|