クリックイベントがここで動作しないのはなぜですか?私の間違いは何ですか?クラス名が同じ場合にクリックイベントが機能しない
$(document).ready(function() {
$('.dashboardList').click(function() {
alert("hello");
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="dashboardList unread">
<div class="dashboardList unread">
<div class="dashboardList unread">
<div class="dashboardList unread">
<div class="dashboardList unread">
使用警告一部のログを追加するように思えますイベントデリゲート –
[SOドキュメント]の[イベントハンドラのアタッチとデタッチ](http://stackoverflow.com/documentation/jquery/1321/events/7665/attach-and-detach-event-handlers#t=201701121235252486981) http://stackoverflow.com/documentation/jquery/1321/events/7665/attach-and-detach-event-handlers#t=201701121235252486981) –