2
クラスを追加することによって:after
のdiv onclick
を示す非常に基本的な機能があります。同じdivの2回目のクリックで擬似要素にテキストを追加
私が達成したいすべてが第二の上をクリックし、ということで、:after
は「THIS」の「AND THIS」
任意のヒントから変更するのでしょうか?
ありがとうございます!
$(document).on("click","#click",function(){$("#logo").addClass("open")});
#click{cursor:pointer}
#logo.open:after{content:" THIS"}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="click">CLICK HERE</div><br>
<div id="logo">SHOT</div>
あなたが上書きされ、新しいクラスを追加することができます擬似要素の内容を直接操作することはできませんが、あなたはhav eコンテンツは代わりにデータ属性を参照し、それを操作します。https://stackoverflow.com/questions/5041494/selecting-and-manipulating-css-pseudo-elements-such-as-before-and-after-usin – Jeremy