使用 requireJS 加载 jquery.jstree.js 在 IE 中不起作用。
当我尝试使用 requireJS 加载 JSTree 插件 (jquery.jstree.js) 时,它在 IE8 中失败并出现以下 JS 错误。
Message: Could not get the type property. Invalid argument.
Line: 109
Char: 463
Code: 0
URI: file:///...../js/requireplugins-jquery-1.4.3.js
我已经在其他浏览器(FF 和 Chrome)中对其进行了测试,并且在那里运行良好。此外,它在 IE 中适用于其他 jQuery 插件,它只对 jsTree 插件有问题
下面的一些代码片段
I have a test.html where I load requrejs specifying the data-main attribute.
<script type="text/javascript" data-main="main" src="js/requireplugins-jquery-1.4.3.js"></script>
A main.js where I define all the modules to be loaded and a callback - I have shown
only the jstree module here as that's the only one causing a problem.
main.js:
require(["jquery.jstree"], callBackFunctionToInitialzeTree);