我想检查一下,我的 php 生成的论坛页面上是否有超过 tho 的大图像,只有这样,我才想加载 jquery 并做一些 jquerystuff。
仅当条件成功时,如何动态加载库?
我想检查一下,我的 php 生成的论坛页面上是否有超过 tho 的大图像,只有这样,我才想加载 jquery 并做一些 jquerystuff。
仅当条件成功时,如何动态加载库?
(function() {
if (something) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js';
(document.getElementsByTagName('head')[0] ||
document.getElementsByTagName('body')[0]).appendChild(s);
}
}());