jquery 로드() 메서드
번역 결과:
load
English [ləʊd]
n.Load; 부담하다; 채우다, 채우다
vi .로드 중
;jquery 로드() 메서드통사론
기능: 지정된 요소(및 하위 요소)가 로드되면 load() 이벤트가 발생합니다. 이 이벤트는 URL이 있는 모든 요소(예: 이미지, 스크립트, 프레임, iframe)에 적용됩니다. 브라우저(Firefox 및 IE)에 따라 이미지가 캐시된 경우 로드 이벤트가 실행되지 않을 수 있습니다. 다양한 매개변수를 사용하는 load()라는 jQuery Ajax 메서드도 있습니다.
구문: $(selector).load(function(){})
매개변수:
매개변수 | 설명 |
함수 | 필수입니다. 지정된 요소가 로드될 때 실행할 함수를 지정합니다. |
jquery 로드() 메서드예
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("img").load(function(){ $("div").text("图像已加载"); }); }); </script> </head> <body> <img src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" /> <div>图像正在加载中 ...</div> <p><b>注释:</b>根据不同的浏览器(Firefox 和 IE),如果图像已被缓存,则也许不会触发 load 事件。</p> </body> </html>
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요