JavaScript
[error/javascript] Failed to load resource: the server responded with a status of 404 ()
코북
2022. 3. 3. 16:06
Failed to load resource: the server responded with a status of 404 ()
JavaScript 사용시 다음과 같은 에러가 발생하였고 확인 결과 경로 설정에 문제가 있었습니다.
<script src="~/Javascipt/jquery-1.9.1.min.js"></script>
<div class="jumbotron">
<h2 style="color:chocolate">Welcome to Computer Shop Management</h2>
</div>
<script src="~/Content/js/jquery-1.9.1.min.js"></script>
<div class="jumbotron">
<h2 style="color:chocolate">Welcome to Computer Shop Management</h2>
</div>
다음과 같이 script 경로를 수정하여 해결하였습니다.