我有一個html頁面,我需要在html的頭部添加一些對JS文件的引用。 以下代碼正在工作,但scriptTVKeyValue始終在標記之前添加 我想直接在 之後添加任何想法我在這裏做錯了?如何在HTML文件的頭部動態添加JavaScript文件?
<head>
// I want reference added here
<script src="js/jquery.js"></script>
<script src="js/json2.js"></script>
// Reference to file added here
</head>
// APP_MAIN.onLoad()
var scriptTVKeyValue = document.createElement('script');
scriptTVKeyValue.type = 'text/javascript';
scriptTVKeyValue.src = '$MANAGER_WIDGET/Common/API/TVKeyValue.js';
head.appendChild(scriptTVKeyValue);