本文介绍了TYPO3:获取“headerData”所包含的javascript在“includeJS”包含的一个之前加载的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在通过以下方式将JQuery加载到我的TYPO3页面中:
I'm loading JQuery into my TYPO3 page by :
page.headerData.10.value = <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
我包括我的javascript:
and I'm including my javascript like this :
page.includeJS {
file20 = fileadmin/templates/myjq.js
}
点是,我需要首先加载JQuery。但TYPO3把它放在我的脚本之后。
如何换掉它?
Point is, i need the JQuery to be loaded first. but TYPO3 puts it after my script. How do i get it swapped?
谢谢
推荐答案
you don't want to include JQuery that way; Use
page.includeJSlibs.jquery.external = 1
page.includeJSlibs.jquery = //ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
代替。
修改
使用没有特定协议(http或https)的网址可确保包含在SSL和非SSL网站上都有效。
EditUsing a URL without a specific protocol (http or https) makes sure the inclusion works on both SSL and non-SSL-sites.
这篇关于TYPO3:获取“headerData”所包含的javascript在“includeJS”包含的一个之前加载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!