我有一个 html 页面,我需要在 html 的头部添加一些对 JS 文件的引用。以下代码正在运行,但是 scriptTVKeyValue 总是被添加在我想直接添加的标签之前,而不是在知道我在这里做错了什么之后吗?
<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);