アイコンをクリックしたときにアラートを表示したいのですが、何らかの理由で全行に表示されます。私は間違って何をしていますか?アラートはアイコン全体をクリックしないと表示されない場合
<div class="footer">
<span id="scroll-top">
<i class="fa fa-round fa-chevron-up"></i>
</span>
</div>
.footer {
background-color: black;
color: white;
padding-top: 40px;
}
.footer .fa-round {
padding: 0;
border-radius: 50%;
color: white;
background-color: red;
font-size: 1.3em;
line-height: 1.6em;
height: 34px;
width: 34px;
}
.footer #scroll-top {
display: block;
cursor: pointer;
z-index: 99999999;
text-align: center;
position: relative;
top: -50px;
}
http://jsfiddle.net/hgu02x0b/1/
変更 '$( "#スクロールトップ")。( "i.faシェブロンアップ")$'に ')(クリックしてください。クリックしてください()' – LGSon