我下載了jQuery,並試圖在崇高的文本編輯器中運行它,但它似乎並沒有工作。在我的控制檯中沒有錯誤,所以我也嘗試在腳本標記中使用jQuery的Web地址,但這也不起作用。最後,我已經將代碼複製並粘貼到一個plunk中,但它仍然無法在其中工作。有人可以看看這個,告訴我發生了什麼事嗎? http://plnkr.co/edit/LSz4Sj35oOvHJYZ61cMrjQuery似乎並沒有在本地或在我的瀏覽器上工作
<!DOCTYPE html>
<html>
<head>
<script data-require="[email protected]" data-semver="2.1.4" src="https://code.jquery.com/jquery-2.1.4.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<div id="circle"></div>
<br />
<p>Hello</p>
</body>
</html>
**CSS**
#circle {
height: 200px;
width: 200px;
border-radius: 100px;
background-color: red;
}
.square {
height: 200px;
width: 200px;
margin-top: 10px;
background-color: blue;
}
**JS**
$('#circle').click(function() {
$('p').html("the text has changed");
});
您需要準備好處理程序。 –
準備好文檔 - https://learn.jquery.com/using-jquery-core/document-ready/ – Clay
[Javascript代碼可能在jsfiddle中工作,但不在瀏覽器中](http://stackoverflow.com/問題/ 23116431/javascript-code-works-in-jsfiddle-but-in-the-browser) –