warum jquery / javascript code nicht funktioniert wenn ich es im selben script tag mit src attribute benutze [duplicate]
Mögliche Duplikate:
Was bedeutet ein Script-Tag mit src UND Inhalt?
Ich habe folgendes in meiner HTML-Seite verwendet
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<script type="text/javascript" src="resources/scripts/jquery-1.8.2.min.js">
$(document).ready(function(){
alert("ABC");
});
</script>
</head>
<body>
<p>THIS IS MY INDEX PAGE.</p>
</body>
</html>
Die Abfrage funktioniert hier nicht, was bedeutet, dass ich nach dem Einfügen eines Alarms keine Auswirkungen davon sehe.
Aber wenn ich mich trenne<script>
tag wie das darunter funktioniert,
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<script type="text/javascript" src="resources/scripts/jquery-1.8.2.min.js">
</script>
<script>
$(document).ready(function(){
alert("ABC");
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
</body>
</html>
also wenn jemand irgendwas erklärt?