スパン内に画像を配置し、jQuery を使用してスパンにクリック イベントを与えることはできますか。ここでは、私のコードでは機能していません。
<span id="removeNewTime" class="removeTime">
<img src="Images/close button.png" alt="close" />
</span>
jQuery コード
<script>
$(document).ready(function(){
$(".removeTime").click(function(){
alert("hello");
});
});
</script>