我正在制作钛合金按钮的事件监听器。当我调试代码时,它不会转到我在listener中实现的函数体。这是代码。
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();