jQuery在Firefox中不工作。它在IE和Google chrome中工作正常,但是當我嘗試在Mozilla Firefox中運行我的應用程序時,jQuery不起作用。任何猜測? 這裏是我的一段代碼jQuery在Firefox中不工作
<!DOCTYPE HTML PUBLIC>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"></script>
<style>
div{
width:200px;
height:100px;
border:1px solid red;
}
</style>
</head>
<body>
<div> One</div>
<div>Two</div>
<div>Three</div>
</body>
<script>
$('div').click(function(){
alert("Hello.....");
});
</script>
</html>
http://jsfiddle.net/yVk53/ - 對我很好用 – Chris
@Chris Go並查看該jsFiddle的源代碼(http://jsfiddle.net/yVk53/show/),你會看到它實際上將所有代碼封裝在另一個'body'元素中,所以這不是一個公平的測試。 –
是的..它從jsfiddle爲我工作。但是,如果我在瀏覽器中打開相同的應用程序(保存在我的桌面上的代碼相同),則它不起作用... –