我想将click
事件绑定在一个很棒的字体图标上。然而,图标本身是不可点击的,只有当我插入额外的文本时,该文本才会被绑定。
如何绑定图标本身?
<span class="icon-star">
only this text is clickable, the icon itself is not
</span>
<script type="text/javascript">
(function($) {
$('span.icon-star').on('click', function() {
console.log($(this));
});
})(jQuery);
</script>