Superobin
Superobin
  • 发布:2015-06-22 18:01
  • 更新:2015-06-24 21:39
  • 阅读:1182

这样写为什么会有问题

分类:HBuilder
document.addEventListener('plusready', function() {  
    $(function() {  
        $('#loc').on('click', handleLoc());  
    })  

});  

function handleLoc() {  
    plus.geolocation.getCurrentPosition(function(p) {  
        console.log('Lat:' + p.coords.latitude + '  Lon:' + p.coords.longitude);  
    });  
}

不点击 #loc 也会触发 handleLoc()

2015-06-22 18:01 负责人:无 分享
已邀请:
chender

chender - 与人为善

$('#loc').on('click', handleLoc())> $('#loc').on('click', handleLoc);

  • 云钦

    正解!

    2016-04-20 22:14

该问题目前已经被锁定, 无法添加新回复