W3Schoolから簡単なスクリプトをコピーしたのですが、実行できません。次のとおりです。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://Web Testing/js/jquery-1.8.0.min.js">
</script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
</body>
</html>
それは次の行で彼らのTryitEditorで動作しますが、BBEditの下の私のMacのこの行でも動作しません