Check if jQuery is included in Header (Joomla)(检查 jQuery 是否包含在 Header (Joomla) 中)
问题描述
有没有办法检查是否使用 PHP 加载了 jQuery?
Is there a way to check if jQuery is loaded using PHP?
我在 Joomla 中有两个不同的插件来加载 jQuery JS,但是当它被多次包含时它不能正常工作.
I have two different plugins in Joomla that load the jQuery JS, but when it is included more than once it does not work correctly.
再解释一下这个过程:Joomla 提供了在呈现 HTML 源代码之前拦截它的能力,本质上是处理源代码本身.
To explain the process a bit more: Joomla offers an ability to intercept the HTML source before it is rendered, essentially working on the source code itself.
这是使用函数:
onPrepareContent(&$row, &$params, $limitstart)
$row 是页面可以解析的 HTML 内容.
$row is the HTML content of the page that can be parsed.
我在想也许 preg_match 可以工作,但没有太多经验.
I was thinking that maybe a preg_match could work but don't have very much experience with it.
推荐答案
更好的是,您可以使用 JavaScript 进行验证,然后在缺少时将其添加到头部.
Better yet, you can verify it with JavaScript and then add it to the head if missing.
if (typeof jQuery == 'undefined') {
var head = document.getElementsByTagName("head")[0];
script = document.createElement('script');
script.id = 'jQuery';
script.type = 'text/javascript';
script.src = 'js/jquery.js';
head.appendChild(script);
}
这篇关于检查 jQuery 是否包含在 Header (Joomla) 中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:检查 jQuery 是否包含在 Header (Joomla) 中
基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01