我是 JQuery 的新手,我不知道为什么这个简单的 JQuery 在 Chrome、FF 中不起作用,令我惊讶的是它在 IE6 上起作用。简单的想法是,当我单击 Div 时,我应该得到一个警报
<!DOCTYPE html>
<html>
<head>
<title>Page Chrome Test</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css">
.divcls { width:100px; height:100px; background-color: black; }
</style>
</head>
<body>
<script type="text/javascript">
jQuery(document).ready(function(){
$(".divcls").click(function(e){
alert('Hi');
});
})
</script>
<div class="divcls">
</div>
</body>
</html>