我在主文件旁边创建了另一个文件 testW.html,我尝试在该文件中调用 worklight 适配器,但它不起作用:
这是我的testW.html:
<html>
<head>
<script>window.$ = window.jQuery = WLJQ;</script>
<script type="text/javascript" data-dojo-config="isDebug: false, async: true, parseOnLoad: true, mblHideAddressBar: false" src="dojo/dojo.js"></script>
</head>
<body onload="WL.Client.init({})">
<h1>Hello</h1>
<button type="button" onclick="LoginWS();">Click Me!</button>
<script src="js/PushAppRealmChallengeHandler.js"></script>
<script src="js/initOptions.js"></script>
<script src="js/test2.js"></script>
<script src="js/configFb.js"></script>
<script src="js/messages.js"></script>
</body>
</html>
在这里,LoginWS() 是 test2.js 中的函数调用工作灯适配器,我尝试在 test2.html 中调用它,一切正常,我如何在 testW.html 中调用它?