将 jQuery 包含到 TYPO3 后端的最佳方法

发布于 2025-01-04 22:19:28 字数 160 浏览 3 评论 0原文

我读过,jQuery 使用的内容可能会在 TYPO3 后端引发一些冲突。但同时,ExtJS 提出了 jQuery 适配器来一起使用这两个框架。

将 jQuery 及其插件包含到 TYPO3 后端 (4.5,4.6,4.7) 中最安全、高效和透明的方法是什么?如果已经有一些扩展,它会实现吗?

I've read, what jQuery use could provoke some conflicts in TYPO3 backend. But in the same time, ExtJS proposes jQuery adapter to use these 2 frameworks together.

What will be the most safe, efficient and transparent way to include jQuery and it's plugins into TYPO3 Backend (4.5,4.6,4.7) ? If there are already some extensions, which realizes it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谜泪 2025-01-11 22:19:28

我已经联系了 T3 jQuery 的作者 Jürgen Furrer。他建议使用他的扩展使用以下方法:

if (t3lib_extMgm::isLoaded('t3jquery')) {
    require_once(t3lib_extMgm::extPath('t3jquery').'class.tx_t3jquery.php');
    $path_to_lib = tx_t3jquery::getJqJSBE();
    $script_to_lib = tx_t3jquery::getJqJSBE(true);
}

I've contacted Jürgen Furrer, the author of T3 jQuery. He adviced to use the following method using his extension :

if (t3lib_extMgm::isLoaded('t3jquery')) {
    require_once(t3lib_extMgm::extPath('t3jquery').'class.tx_t3jquery.php');
    $path_to_lib = tx_t3jquery::getJqJSBE();
    $script_to_lib = tx_t3jquery::getJqJSBE(true);
}
浮生面具三千个 2025-01-11 22:19:28

我认为这对于了解您正在使用哪个版本的 JQuery 来说更安全。因此,您可以在模板中添加:

page.includeJS {
    file1 = fileadmin/templates/project1/js/app.js 
}

I think this is safer in terms of knowing which version of JQuery you are using. So in a template you would add:

page.includeJS {
    file1 = fileadmin/templates/project1/js/app.js 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文