我已经尝试了所有这三种方法,它们中的每一种都只能工作一次,我必须刷新才能让它再次工作。这是我的代码。
$(document).ready(function(){
$('#notificationTB').on('click', function(){
document.getElementById('notificationTB').src='img/notifC.png';
$('#notifBox').css('display', 'block');
$(this).on('click', function(){
document.getElementById('notificationTB').src='img/notif.png';
$('#notifBox').css('display', 'none');
});
});
});
谢谢