2
$('#input').focus(function() {
$('#div').show();
}).blur(function(){
$('#div').hide();
})
#div {
display: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type='text' id='input'>
<div id='div'><a href='www.domain.com'>Don't Forget to check the rules.<a></div>
在這裏我的代碼,我試圖展現一個div聚焦時,卻隱藏着它,而不是集中
哪有我點擊它時會顯示div嗎?每次我嘗試點擊它時,它都會再次隱藏,我想讓其上的鼠標可以上hold
。
這將使僅適用於200毫秒的股利,而不能堅持鼠標點擊。它將與右鍵單擊窗口一起工作,但仍然會消失。 – Axon