2
每當用戶關注點擊輸入時,我想觸發一個方法。 我有以下代碼:jQuery(document).on('focus')?
jQuery(document).on('focus click', function(e){
console.log("focused on " + $(e.target).attr('id'));
});
但每當我焦點的元素上它只是給focused on undefined
。這段代碼有什麼問題?
即使'this.id '足夠了;)。 – Simon 2013-02-18 12:10:05
@Simon你是對的.. – Anujith 2013-02-18 12:10:57