0

我正在制作钛中按钮的事件侦听器。当我调试代码时,它不会进入我在侦听器中实现的函数体。这是代码。

Titanium.UI.setBackgroundColor('#000');

var win = Ti.UI.createWindow({
     backgroundColor:'#ccc',
     title:'Android Cloud Push Notification'
});

var btnSearchcompany = Titanium.UI.createButton({
     backgroundImage : 'images/search.png',
     top : '32%',
     width : '15%',
     height : '5%',
     right : '12%',
     borderRadius : 3
});

win.add(btnSearchcompany);

function searchcompanyyql(){
     alert("wahhab");       
}

btnSearchcompany.addEventListener('click', function(e) {
     searchcompanyyql();
});

win.open();
4

0 回答 0