我有这个简单的 Titanium js 脚本。
应用程序.js
var win = Ti.UI.createWindow();
var webview = Ti.UI.createWebView({
url: 'logging.html'
});
webview.addEventListener('help',function(){
alert('help');
});
win.add(webview);
win.open();
记录.html
<html>
<body>
<a onclick="Ti.App.fireEvent('help')">Help</a>
</body>
</html>
当我单击“帮助”链接时,控制台会给我Reference Error: Ti is not defined
.
我也尝试用 Titanium 更改 Ti,但同样的错误。
- - - - - - - 编辑 - - - - -
此错误仅与 Web 浏览器有关。iOS完美运行。但