Drupal 6:替换单页上的 jquery 版本
我对 Jquery 版本绑定感到非常困惑。我需要在一个特定页面上安装 1.4.1 或更高版本,以实现特定效果,并且我没有找到一种方法来覆盖 Drupal 默认版本 1.2.6。仅一页。 Drupal 6 可以处理的最高版本似乎是 v1.3.2,JQ 更新模块 在站点范围内进行交换。
那么有没有办法覆盖特定页面的JQ head标签呢?
I'm in quite a pickle with a Jquery version bind. I need to have version 1.4.1 or higher on one specific page, to achieve a particular effect, and I don't see a way to override the Drupal default verion of 1.2.6. for just the one page. The highest Drupal 6 can seem to handle is v1.3.2, which the JQ Update module swaps in sitewide.
So is there any way to override the JQ head tag for a particular page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它位于一个新模块中。这是从 jquery update 模块复制并修改的:
Here it is in a new module. This is copied and modified from the jquery update module.:
drupal_add_js 可以工作吗?将
$data
替换为 .js 文件的路径。Could drupal_add_js work? Replace
$data
with the path to your .js file.Michael D 的回答非常棒。我要补充一点,我不是将它用于单个页面,而是用于前面的所有站点,因此,我可以为后台保留标准版本的 Jquery。我没有任何冲突,我使用最新版本的 Jquery。
The answer of Michael D is just great. I'll add, i use it not for a single page, but for all the site in front and so, i could keep standard version of Jquery for the backoffice. I do not have any conflict and i use latest version of Jquery.