单击按钮打开并显示另一个js文件

时间:2014-01-31 22:04:25

标签: button titanium

尝试让我的nxbutton打开并显示另一个JSfile(cat.js)。 我看过具有相同问题的线程并尝试了许多不同的解决方案,这就是我最终的结果,并且它不起作用。

http://pastie.org/8686848#9

cat.js位于资源文件夹中。

Wat do?

2 个答案:

答案 0 :(得分:0)

如果你在app.js工作,那么试试这个

nxbutton.addEventListener( 'click', function( e ) {
  var catwin = Ti.UI.createWindow({
    url: 'cat.js',
    title: 'Cat Window',
  });
  catwin.open();
});

,否则

nxbutton.addEventListener( 'click', function( e ) {
  var catwin = Ti.UI.createWindow({
    url: 'cat.js',
    title: 'Cat Window',
  });
  Ti.UI.currentWindow.open( catwin );
});

答案 1 :(得分:0)

如果您使用的是Alloy,请尝试使用此代码,否则Adnan代码就可以了

nxbutton.addEventListener('click', function(e) ) {
    var catWin = Alloy.createController('catwin').getView();
    catWin.open();
}