私はこのコードを持っています:
<div id="notfication">
<div class="notfi-more right"></div>
<div id="right" class="notfication-part"></div>
<div class="notfi-more left"></div>
<div id="left" class="notfication-part"></div>
</div>
2 div (これらの div には通知部分クラスがあります) をクリックすると、このアルゴリズムが実行されます。
first :id
クリックされた要素を取得
2番目: name = id clicked nameのクラスを持つdivを見つける
3番目:それを見つけたら、divの表示を変更してこれを行います:display:block;
仕方がなく、とても困っています…
これは私のjQuery
コードです:
var elementID = null;
$('#notfication .notfication-part').on('click',function(){
elementID = $(this).attr('id');
//??? I dont know how get one element that had class with name = elementID
});