我有一个不能使用外部脚本引用的应用程序。我一直能够使用任何类型的脚本将其内联,但使用 go.js 是不可能的。这有什么特别的原因吗?
代码示例:
<script src="../release/go.js"></script>
<script src="../assets/js/goSamples.js"></script> <!-- this is only for the GoJS Samples framework -->
<script id="code">
function init() {
...
当我将其更改为
<script>
(here I copy all the content of go.js)
(here I copy all the content of goSamples.js)
</script>
网页不工作。这可能与
<script id="code">
?
谢谢您的帮助。