如何在MVC模型(PHP)中加载外部JS文件

时间:2017-01-26 08:04:35

标签: javascript php model-view-controller view

**嗨,我想在我的视图中加载特定的js文件**

如何在 DashboardView.php中加载 dashboard.js

这是我的代码

dashboard.js

$(document).ready(function () {
    App.init();
    Dashboard.init();
});

DashboardView.js

<html>  
<head>
    <!-- <script src='<?php echo ABS_PATH; ?>/script/dashboard.js'></script> --> 
</head>
<body>
<div class="row">
    *my content*        
</div>
<!-- end row -->
</body>
</html>

非常感谢。非常感谢任何帮助!

0 个答案:

没有答案