내 Jquery 라이브러리가 HTML 페이지에로드되어 있는지 확인하려고합니다. 작동하는지 확인하고 있지만 뭔가 잘못되었습니다. 여기 내가 가진 것입니다 :
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="/query-1.6.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
if (jQuery) {
// jQuery is loaded
alert("Yeah!");
} else {
// jQuery is not loaded
alert("Doesn't Work");
}
});
</script>
alert(window.$?1:0)
<!doctype html>
대신
$(document)
ready 함수가 전혀 실행되지 않으면 jquery가로드됩니다. 따라서 단순히 $(document).ready(function(){ alert("Ready!"); });
Granted 를 수행 할 수 있습니다. jquery가 실행되지 않으면 경고가 표시되지 않습니다. 그러나 jquery 라이브러리를 올바르게 참조했는지 확인 해야하는 경우 충분합니다.