你写的方式是对的。
我刚刚添加了 2 件事。
1) 基本 URL
2) 取消转义特殊字符
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
!window.jQuery && document.write(unescape('%3Cscript src="<?php echo $this->baseUrl(); ?>/base/js/jquery-1.7.2.js"%3E%3C/script%3E'));
</script>
用于使用头脚本视图助手
$java_script_code= '<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>';
$java_script_code.= '<script>';
$java_script_code.= '!window.jQuery && document.write(unescape(\'%3Cscript src="' . $this->baseUrl() . '/base/js/jquery-1.7.2.js"%3E%3C/script%3E\'));';
$java_script_code.= '</script>';
您可以在视图中执行此操作
$this->headScript()->appendScript($java_script_code);
或在控制器中(更新上面的基本网址)
$this->view->headScript()->appendScript($java_script_code);
仅供参考:头部脚本助手