gpt4 book ai didi

php - 我如何在 CakePHP 中定义脚本?

转载 作者:行者123 更新时间:2023-11-30 07:45:22 24 4
gpt4 key购买 nike

每当我尝试以这种方式定义 2 个脚本时:

echo $this->Html->script(array('jquery', 'prototype'));

只有 prototype 在工作。

当我这样做时:

echo $this->Html->script(array('prototype', 'jquery'));

只有 jquery 在工作。

我该如何修复才能使两者都正常工作?

最佳答案

那是因为它们使用了$变量,而第二个脚本覆盖了第一个。

尝试为中间创建一个脚本,它只包含:

$j = $.noConflict(); //sets `$j` as the jQuery variable

然后做:

echo $this->Html->script(array('jquery', 'middleScript', 'prototype'));

关于php - 我如何在 CakePHP 中定义脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7728630/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com