我想要的是當我的輸入框增益focus
並能夠選擇一個值並填充文本框時顯示hidden
div。 然後使顯示的div fadeOut
。如何去關於重點事件點擊事件
<div class='_date'>
<div class='birth_date'>
<p class='year'>1970</p>
<p class='year'>1971</p>
<p class='year'>1972</p>
</div>
</div>
<input type='text' name='date_year' id = 'birth_year'>
jQuery的:
$('.birth_date').hide();
$('body').on('focus', '#birth_year' ,function (e) {
$('.birth_date').show();
//this is where my click event comes in...
})
如何實現這個bubbles
在我的頭上,我就如何嘗試一下有點糊塗了。
見下圖:
這個工程,但我希望點擊事件來'mousedwon'事件,因爲我有其他的事情。 – Yax 2014-09-25 14:24:02
這裏是一個[小提琴](http://jsfiddle.net/donkino/qu6vovf4/) 我認爲你在找什麼。 – donkino 2014-09-25 15:07:27