DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 基於jquery點擊自以外任意處,關閉自身的代碼
基於jquery點擊自以外任意處,關閉自身的代碼
編輯:JQuery特效代碼     
Html:
. 代碼如下:
<div class="down">click</div>
<div class="con hide">show-area</div>

CSS:
. 代碼如下:
.hide{display:none;}

js:
. 代碼如下:
$(document).ready(function(){
$("div.down").click(function(e){
e.stopPropagation();
$("div.con").removeClass("hide");
});
$(document).click(function(){
if(!$("div.con").hasClass("hide")){
$("div.con").addClass("hide");
}
});
});
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved