我试图将我的drupal jquery1.4更新为jquery1.8。我尝试使用以下方式。
function oxavd_js_alter(&$javascript) {
//We define the path of our new jquery core file
//assuming we are using the minified version 1.8
$jquery_path = drupal_get_path('theme','oxavd') . '/js/jquery-1.8.0.min.js';
//We duplicate the important information from the Drupal one
$javascript[$jquery_path] = $javascript['misc/jquery.js'];
//..and we update the information that we care about
$javascript[$jquery_path]['version'] = '1.8.0';
$javascript[$jquery_path]['data'] = $jquery_path;
//Then we remove the Drupal core version
unset($javascript['misc/jquery.js']);
}
我是从here
提到的但这对我没有用。 它显示版本1.4.4
<script type="text/javascript" src=".../misc/jquery.js?v=1.4.4"></script>
任何帮助都将不胜感激。