所以我想寫一個超級簡單的腳本,將允許用戶拋出任何鏈接或按鈕類.close
在一個div內,當這個.close
鏈接被點擊時,它自動關閉父容器。使用jQuery隱藏父母div點擊
以下是我目前正在與合作:JSFiddle
,我目前正在使用的代碼:
HTML
<div class="well notice bg-green">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<p>This is a notice that is green.</p>
</div>
CSS
.well {
background: #f9f9f9;
border-color: #f1f1f1;
border-style: solid;
border-width: 1px;
padding: 15px 20px;
}
.notice {
margin: 15px 0;
padding: 0px 15px;
}
.well.bg-green {
background: #dff0d8;
border-color: #d6e9c6;
color: #468847;
}
.close {
color: #000;
filter: alpha(opacity=20);
float: right;
font-size: 21px;
font-weight: bold;
line-height: 1;
margin-top: 15px;
opacity: .2;
text-shadow: 0 1px 0 #fff;
}
.close:hover, .close:focus {
color: #000;
cursor: pointer;
filter: alpha(opacity=50);
opacity: .5;
text-decoration: none;
}
button.close {
background: transparent;
border: 0;
cursor: pointer;
padding: 0;
-webkit-appearance: none;
-moz-appearance: none;
}
的JavaScript(jQuery的)
$('.close').live("click", function() {
$(this).parents('div').fadeOut;
});
讓我知道,如果我的問題沒有意義,或者如果需要更多的闡述。謝謝!
'fadeOut'應該是'淡出()' –
在jQuery 1.7中,.live()方法已過時。使用.on()附加事件處理程序。 – j08691