我尝试使用head.js在我的asp.net页面中加载javascript文件,该页面使用母版页(和usercontrols)来确保它们更加自包含。
但是当页面加载时,我收到此错误“ HTML解析错误:无法在子元素关闭之前修改父容器元素”。
head.js在母版页中被引用
基本上我在实际的aspx页面中的一个内容持有者中有以下脚本。
<script type="text/javascript">
head.js("http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js", function() {
alert('load done');
});
</script>
有什么建议吗?