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

时间:2012-02-13 16:30:12

标签: jquery typo3 backend

我读过,jQuery的使用可能会引发TYPO3后端的一些冲突。但同时,ExtJS建议jQuery适配器将这两个框架结合使用。

将jQuery及其插件包含在TYPO3后端(4.5,4.6,4.7)中最安全,最有效,最透明的方法是什么?如果已经有一些扩展,那就意识到了吗?

2 个答案:

答案 0 :(得分:3)

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

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);
}

答案 1 :(得分:0)

我认为在了解您正在使用哪个版本的JQuery方面更安全。所以在模板中你要添加:

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