프런트 엔드 개발 중에 우리는 주로 jQuery를 사용하므로 chrome이나 기타 chromium 브라우저 또는 Mozilla Firefox와 같은 개발자 콘솔을 제공하는 다른 브라우저에서 jQuery 쿼리를 실행할 수 있는 방법을 알아두면 좋습니다. 마이크로소프트 엣지 등
먼저 크롬 브라우저 설정에서 브라우저 개발자 콘솔을 열거나 **Control + SHIFT + I
**를 누르세요.
그런 다음 그 안에 다음 쿼리를 실행합니다.
var MyjQuery= document.createElement('script');
MyjQuery.src = "https://code.jquery.com/jquery-3.3.1.min.js";
document.getElementsByTagName('head')[0].appendChild(MyjQuery);
jQuery.noConflict(); // test it
또는 한 줄로 복사하여 붙여넣고 한 번에 실행
var MyjQuery= document.createElement('script'); MyjQuery.src = "https://code.jquery.com/jquery-3.3.1.min.js"; document.getElementsByTagName('head')[0].appendChild(MyjQuery);
그 후에는 다음과 같이 콘솔에서 직접 jQuery를 실행할 수 있습니다.
jQuery("#my_element").css("display", "block !important");