我已经多次使用 jQuery 进行悬停和单击操作,但这让我感到困惑。我导入了 jQuery 库,并且有以下内容:
$(document).ready(function() {
$('.content_main_left_bottom').bind("click", function(e) {
alert('hi');
});
});
由于某种原因,它永远不会达到警报!我什至把警报放在文档的正上方,它就显示在那里。我在代码中的某个地方有 div 标签,content_main_left_bottom
我还应该对那个类做些什么吗?